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

summaryrefslogtreecommitdiff
path: root/source/game/StarWorldClientState.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/game/StarWorldClientState.cpp')
-rw-r--r--source/game/StarWorldClientState.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/game/StarWorldClientState.cpp b/source/game/StarWorldClientState.cpp
index 978c115..5dc6b12 100644
--- a/source/game/StarWorldClientState.cpp
+++ b/source/game/StarWorldClientState.cpp
@@ -52,7 +52,7 @@ List<EntityId> const& WorldClientState::clientPresenceEntities() const {
}
void WorldClientState::setClientPresenceEntities(List<EntityId> entities) {
- m_clientPresenceEntities.set(move(entities));
+ m_clientPresenceEntities.set(std::move(entities));
}
List<RectI> WorldClientState::monitoringRegions(function<Maybe<RectI>(EntityId)> entityBounds) const {
@@ -84,7 +84,7 @@ ByteArray WorldClientState::writeDelta() {
}
void WorldClientState::readDelta(ByteArray delta) {
- m_netGroup.readNetState(move(delta));
+ m_netGroup.readNetState(std::move(delta));
}
void WorldClientState::reset() {