diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-28 18:29:02 +0100 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-28 20:13:32 +0100 |
| commit | 78a3eec9be053a1f82cf2e6235bbaa4deb4a1335 (patch) | |
| tree | 4539ba47695bc7b5fd974e2508067cb2fd168636 /main/main-impl.cpp | |
| parent | 75508e3c03f659080df7db2211fb5a80cc1afeee (diff) | |
switch to using unqualified calls to {move,forward,swap}
Diffstat (limited to 'main/main-impl.cpp')
| -rw-r--r-- | main/main-impl.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/main/main-impl.cpp b/main/main-impl.cpp index fde0861d..11561a4a 100644 --- a/main/main-impl.cpp +++ b/main/main-impl.cpp @@ -1,7 +1,6 @@ #include "main-impl.hpp" #include "src/search-astar.hpp" #include "src/search.hpp" -#include <Corrade/Utility/Move.h> #include <Magnum/Platform/Sdl2Application.h> namespace floormat { @@ -37,7 +36,7 @@ int main_impl::exec() floormat_main* floormat_main::create(floormat_app& app, fm_settings&& options) { - auto* ret = new main_impl(app, Utility::move(options), options.argc, const_cast<char**>(options.argv)); + auto* ret = new main_impl(app, move(options), options.argc, const_cast<char**>(options.argv)); return ret; } |
