diff options
Diffstat (limited to 'source/game/StarCelestialCoordinate.cpp')
-rw-r--r-- | source/game/StarCelestialCoordinate.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/game/StarCelestialCoordinate.cpp b/source/game/StarCelestialCoordinate.cpp index 70bd61d..0c3e914 100644 --- a/source/game/StarCelestialCoordinate.cpp +++ b/source/game/StarCelestialCoordinate.cpp @@ -10,7 +10,7 @@ namespace Star { CelestialCoordinate::CelestialCoordinate() : m_planetaryOrbitNumber(0), m_satelliteOrbitNumber(0) {} CelestialCoordinate::CelestialCoordinate(Vec3I location, int planetaryOrbitNumber, int satelliteOrbitNumber) - : m_location(move(location)), + : m_location(std::move(location)), m_planetaryOrbitNumber(planetaryOrbitNumber), m_satelliteOrbitNumber(satelliteOrbitNumber) {} |