diff options
Diffstat (limited to 'source/game/StarPlatformerAStar.cpp')
-rw-r--r-- | source/game/StarPlatformerAStar.cpp | 4 |
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(); } |