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 /serialize/ground-atlas.cpp | |
parent | 75508e3c03f659080df7db2211fb5a80cc1afeee (diff) |
switch to using unqualified calls to {move,forward,swap}
Diffstat (limited to 'serialize/ground-atlas.cpp')
-rw-r--r-- | serialize/ground-atlas.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/serialize/ground-atlas.cpp b/serialize/ground-atlas.cpp index 6844019c..d563bb05 100644 --- a/serialize/ground-atlas.cpp +++ b/serialize/ground-atlas.cpp @@ -8,7 +8,6 @@ #include "serialize/magnum-vector.hpp" #include "serialize/pass-mode.hpp" #include <tuple> -#include <Corrade/Utility/Move.h> #include <Magnum/Trade/ImageData.h> #include <Magnum/ImageView.h> #include <nlohmann/json.hpp> @@ -58,7 +57,7 @@ void adl_serializer<std::shared_ptr<ground_atlas>>::to_json(json& j, const std:: void adl_serializer<std::shared_ptr<ground_atlas>>::from_json(const json& j, std::shared_ptr<ground_atlas>& val) { ground_def def = j; - val = std::make_shared<ground_atlas>(std::move(def), loader.texture(loader.GROUND_TILESET_PATH, def.name)); + val = std::make_shared<ground_atlas>(move(def), loader.texture(loader.GROUND_TILESET_PATH, def.name)); } } // namespace nlohmann |