summaryrefslogtreecommitdiffhomepage
path: root/editor/ctor.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-02-28 18:29:02 +0100
committerStanislaw Halik <sthalik@misaki.pl>2024-02-28 20:13:32 +0100
commit78a3eec9be053a1f82cf2e6235bbaa4deb4a1335 (patch)
tree4539ba47695bc7b5fd974e2508067cb2fd168636 /editor/ctor.cpp
parent75508e3c03f659080df7db2211fb5a80cc1afeee (diff)
switch to using unqualified calls to {move,forward,swap}
Diffstat (limited to 'editor/ctor.cpp')
-rw-r--r--editor/ctor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/ctor.cpp b/editor/ctor.cpp
index 36a35ae5..6b35b34c 100644
--- a/editor/ctor.cpp
+++ b/editor/ctor.cpp
@@ -10,7 +10,7 @@
namespace floormat {
app::app(fm_settings&& opts) :
- M{floormat_main::create(*this, Utility::move(opts))},
+ M{floormat_main::create(*this, move(opts))},
_imgui{InPlaceInit, NoCreate},
_wireframe{InPlaceInit},
_tests{tests_data_::make()},