From f2cb5a7414b7b1ab6d14d2b5484d69f2b361ffcb Mon Sep 17 00:00:00 2001 From: Andy Maloney Date: Thu, 2 Feb 2023 11:30:37 -0500 Subject: [PATCH] Fix improper implicit conversion --- test/src/example.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/example.cpp b/test/src/example.cpp index f0fce6c6..9ec23b04 100644 --- a/test/src/example.cpp +++ b/test/src/example.cpp @@ -311,7 +311,7 @@ Dictionary Example::test_dictionary() const { } BitField Example::test_bitfield(BitField flags) { - UtilityFunctions::print(" Got BitField: ", String::num(flags)); + UtilityFunctions::print(" Got BitField: ", String::num_int64(flags)); return flags; }