1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-04 02:41:19 +00:00

Don't use std::move on const

This commit is contained in:
jvoisin 2021-05-02 15:50:44 +02:00
parent 471ab431f5
commit d4d111a709

View File

@ -262,7 +262,7 @@ namespace DetourNavigator
if (jobs.top().mProcessTime > now) if (jobs.top().mProcessTime > now)
return {}; return {};
Job job = std::move(jobs.top()); Job job = jobs.top();
jobs.pop(); jobs.pop();
if (changeLastUpdate && job.mChangeType == ChangeType::update) if (changeLastUpdate && job.mChangeType == ChangeType::update)
@ -273,7 +273,7 @@ namespace DetourNavigator
if (it->second.empty()) if (it->second.empty())
pushed.erase(it); pushed.erase(it);
return {std::move(job)}; return job;
} }
void AsyncNavMeshUpdater::writeDebugFiles(const Job& job, const RecastMesh* recastMesh) const void AsyncNavMeshUpdater::writeDebugFiles(const Job& job, const RecastMesh* recastMesh) const