Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/game/StarPlatformerAStar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/game/StarPlatformerAStar.cpp')
-rw-r--r--source/game/StarPlatformerAStar.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/game/StarPlatformerAStar.cpp b/source/game/StarPlatformerAStar.cpp
index c74802c..fbd873b 100644
--- a/source/game/StarPlatformerAStar.cpp
+++ b/source/game/StarPlatformerAStar.cpp
@@ -48,8 +48,8 @@ namespace PlatformerAStar {
: m_world(world),
m_searchFrom(searchFrom),
m_searchTo(searchTo),
- m_movementParams(move(movementParameters)),
- m_searchParams(move(searchParameters)) {
+ m_movementParams(std::move(movementParameters)),
+ m_searchParams(std::move(searchParameters)) {
initAStar();
}