1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-19 21:23:52 +00:00

Workaround for GCC 5 bug

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61636
This commit is contained in:
elsid 2020-04-29 13:54:48 +02:00
parent 476a74c2d3
commit 899a6b5aa3
No known key found for this signature in database
GPG key ID: B845CB9FEE18AB40

View file

@ -57,7 +57,7 @@ namespace DetourNavigator
const AreaType areaType)
{
return mRecastMeshManager.updateObject(id, shape, transform, areaType,
[&] (const auto& tile) { addChangedTile(tile, ChangeType::update); });
[&] (const TilePosition& tile) { addChangedTile(tile, ChangeType::update); });
}
bool NavMeshManager::removeObject(const ObjectId id)