diff options
| author | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-07 13:48:54 +0100 |
|---|---|---|
| committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-02-07 13:48:54 +0100 |
| commit | e72bc1a12f31cc488e95f5756a592f538aa20f17 (patch) | |
| tree | 56101572afa732aa94a07348cab88b349eb5574b /test/src | |
| parent | 9607a51b52e7ec58d1eeae227181bd6a4218f4a6 (diff) | |
| parent | f2cb5a7414b7b1ab6d14d2b5484d69f2b361ffcb (diff) | |
| download | redot-cpp-e72bc1a12f31cc488e95f5756a592f538aa20f17.tar.gz | |
Merge pull request #1028 from asmaloney/fix-improper-conversion
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 cbf1331..a94175d 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; } |
