diff options
Diffstat (limited to 'source/game/StarSystemWorldServerThread.cpp')
-rw-r--r-- | source/game/StarSystemWorldServerThread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/game/StarSystemWorldServerThread.cpp b/source/game/StarSystemWorldServerThread.cpp index 3ec26a7..281ae3e 100644 --- a/source/game/StarSystemWorldServerThread.cpp +++ b/source/game/StarSystemWorldServerThread.cpp @@ -7,7 +7,7 @@ namespace Star { SystemWorldServerThread::SystemWorldServerThread(Vec3I const& location, SystemWorldServerPtr systemWorld, String storageFile) : Thread(strf("SystemWorldServer: {}", location)) , m_systemLocation(location) - , m_systemWorld(move(systemWorld)) + , m_systemWorld(std::move(systemWorld)) , m_storageFile(storageFile) { } |