Merge pull request #2812 from elsid/fix_gcc_5_build

Workaround for GCC 5 bug
pull/2815/head
Alexei Dobrohotov 5 years ago committed by GitHub
commit 1bcf38c3d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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)

Loading…
Cancel
Save