diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-06 19:12:39 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-06 19:12:39 +0200 |
commit | f60d07f5d5d8e08be409e1ba2c11d2a936c2af99 (patch) | |
tree | 15d1c7f4d4199c507b44688be94a11a66e2cd58d /test/json.cpp | |
parent | 48a9024aa96e066b179a865cb658f95f234570c1 (diff) |
a
Diffstat (limited to 'test/json.cpp')
-rw-r--r-- | test/json.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/json.cpp b/test/json.cpp index dfcbd23f..a47f08ac 100644 --- a/test/json.cpp +++ b/test/json.cpp @@ -7,7 +7,7 @@ #include "loader.hpp" namespace Magnum::Examples { -void app::test_json() // NOLINT(readability-convert-member-functions-to-static) +bool app::test_json() // NOLINT(readability-convert-member-functions-to-static) { bool ret = true; using nlohmann::to_json; @@ -24,6 +24,7 @@ void app::test_json() // NOLINT(readability-convert-member-functions-to-static) ret &= json_helper::to_json(v2i_2, output_dir/"vec2i_2.json"); } ASSERT(ret); + return 0; } } // namespace Magnum::Examples |