diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/app.hpp | 4 | ||||
-rw-r--r-- | test/const-math.cpp | 4 | ||||
-rw-r--r-- | test/json.cpp | 4 | ||||
-rw-r--r-- | test/main.cpp | 6 | ||||
-rw-r--r-- | test/tile-iter.cpp | 4 |
5 files changed, 11 insertions, 11 deletions
diff --git a/test/app.hpp b/test/app.hpp index a7bb7d8b..4647001e 100644 --- a/test/app.hpp +++ b/test/app.hpp @@ -1,7 +1,7 @@ #pragma once #include <Magnum/Magnum.h> #include <Magnum/Platform/WindowlessWglApplication.h> -namespace Magnum::Examples { +namespace floormat { struct app final : Platform::WindowlessWglApplication // NOLINT(cppcoreguidelines-virtual-class-destructor) { explicit app(const Arguments& arguments); @@ -11,4 +11,4 @@ struct app final : Platform::WindowlessWglApplication // NOLINT(cppcoreguideline static bool test_tile_iter(); static bool test_const_math(); }; -} // namespace Magnum::Examples +} // namespace floormat diff --git a/test/const-math.cpp b/test/const-math.cpp index 3f125a1f..1d07d08f 100644 --- a/test/const-math.cpp +++ b/test/const-math.cpp @@ -57,7 +57,7 @@ static constexpr void* compile_tests() return nullptr; } -namespace Magnum::Examples { +namespace floormat { bool app::test_const_math() { @@ -65,7 +65,7 @@ bool app::test_const_math() return true; } -} // namespace Magnum::Examples +} // namespace floormat #ifdef __GNUG__ # pragma GCC diagnostic pop diff --git a/test/json.cpp b/test/json.cpp index 46bdf528..31733101 100644 --- a/test/json.cpp +++ b/test/json.cpp @@ -9,7 +9,7 @@ #include "chunk.hpp" #include "loader.hpp" -namespace Magnum::Examples { +namespace floormat { static chunk make_test_chunk() { @@ -56,4 +56,4 @@ bool app::test_json() // NOLINT(readability-convert-member-functions-to-static) return ret; } -} // namespace Magnum::Examples +} // namespace floormat diff --git a/test/main.cpp b/test/main.cpp index 6dfe1f85..8e053d23 100644 --- a/test/main.cpp +++ b/test/main.cpp @@ -7,7 +7,7 @@ #include <Corrade/Utility/Path.h> #include <Magnum/Magnum.h> -namespace Magnum::Examples { +namespace floormat { app::app(const Arguments& arguments): Platform::WindowlessWglApplication{ @@ -31,11 +31,11 @@ int app::exec() return !ret; } -} // namespace Magnum::Examples +} // namespace floormat int main(int argc, char** argv) { - Magnum::Examples::app application{{argc, argv}}; + floormat::app application{{argc, argv}}; return application.exec(); } diff --git a/test/tile-iter.cpp b/test/tile-iter.cpp index 360b2319..3aeb3ba2 100644 --- a/test/tile-iter.cpp +++ b/test/tile-iter.cpp @@ -1,6 +1,6 @@ #include "app.hpp" #include "chunk.hpp" -namespace Magnum::Examples { +namespace floormat { static inline bool always_false() { @@ -47,5 +47,5 @@ bool app::test_tile_iter() // NOLINT(readability-function-size) return true; } -} // namespace Magnum::Examples +} // namespace floormat |