summaryrefslogtreecommitdiffstats
path: root/test/src
diff options
context:
space:
mode:
authorAndy Maloney <asmaloney@gmail.com>2023-02-02 11:30:37 -0500
committerAndy Maloney <asmaloney@gmail.com>2023-02-02 11:30:37 -0500
commitf2cb5a7414b7b1ab6d14d2b5484d69f2b361ffcb (patch)
treea1565163836320c37aaac67fdcf3b423856a741b /test/src
parentf2b97528c1369a6c40f3749817d00e4633afc43e (diff)
downloadredot-cpp-f2cb5a7414b7b1ab6d14d2b5484d69f2b361ffcb.tar.gz
Fix improper implicit conversion
Diffstat (limited to 'test/src')
-rw-r--r--test/src/example.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/example.cpp b/test/src/example.cpp
index f0fce6c..9ec23b0 100644
--- a/test/src/example.cpp
+++ b/test/src/example.cpp
@@ -311,7 +311,7 @@ Dictionary Example::test_dictionary() const {
}
BitField<Example::Flags> Example::test_bitfield(BitField<Flags> flags) {
- UtilityFunctions::print(" Got BitField: ", String::num(flags));
+ UtilityFunctions::print(" Got BitField: ", String::num_int64(flags));
return flags;
}