diff options
Diffstat (limited to 'test/main.cpp')
-rw-r--r-- | test/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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(); } |