From 78a3eec9be053a1f82cf2e6235bbaa4deb4a1335 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Wed, 28 Feb 2024 18:29:02 +0100 Subject: switch to using unqualified calls to {move,forward,swap} --- main/ctor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main/ctor.cpp') diff --git a/main/ctor.cpp b/main/ctor.cpp index 69f965c9..da38fb18 100644 --- a/main/ctor.cpp +++ b/main/ctor.cpp @@ -10,7 +10,7 @@ namespace floormat { main_impl::main_impl(floormat_app& app, fm_settings&& se, int& argc, char** argv) noexcept : Platform::Sdl2Application{Arguments{argc, argv}, make_conf(se), make_gl_conf(se)}, - s{std::move(se)}, app{app}, _shader{_tuc} + s{move(se)}, app{app}, _shader{_tuc} { if (s.vsync) { @@ -29,7 +29,7 @@ main_impl::main_impl(floormat_app& app, fm_settings&& se, int& argc, char** argv class world& main_impl::reset_world(class world&& w) noexcept { arrayResize(_clickable_scenery, 0); - _world = std::move(w); + _world = move(w); return _world; } -- cgit v1.2.3