diff options
Diffstat (limited to 'source/game/items/StarTools.cpp')
-rw-r--r-- | source/game/items/StarTools.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/game/items/StarTools.cpp b/source/game/items/StarTools.cpp index 7faaeae..e1bb576 100644 --- a/source/game/items/StarTools.cpp +++ b/source/game/items/StarTools.cpp @@ -245,7 +245,7 @@ List<LightSource> Flashlight::lightSources() const { lightSource.pointBeam = m_beamWidth; lightSource.beamAngle = angle; lightSource.beamAmbience = m_ambientFactor; - return {move(lightSource)}; + return {std::move(lightSource)}; } WireTool::WireTool(Json const& config, String const& directory, Json const& parameters) |