diff options
| author | Andy Maloney <asmaloney@gmail.com> | 2023-02-02 11:30:37 -0500 |
|---|---|---|
| committer | Andy Maloney <asmaloney@gmail.com> | 2023-02-02 11:30:37 -0500 |
| commit | f2cb5a7414b7b1ab6d14d2b5484d69f2b361ffcb (patch) | |
| tree | a1565163836320c37aaac67fdcf3b423856a741b /test/src | |
| parent | f2b97528c1369a6c40f3749817d00e4633afc43e (diff) | |
| download | redot-cpp-f2cb5a7414b7b1ab6d14d2b5484d69f2b361ffcb.tar.gz | |
Fix improper implicit conversion
Diffstat (limited to 'test/src')
| -rw-r--r-- | test/src/example.cpp | 2 |
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; } |
