diff options
author | ariel- <ariel-@users.noreply.github.com> | 2017-06-08 18:45:12 -0300 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2018-03-28 19:57:00 +0200 |
commit | 570692be9f44f9123c309f311c3aadd1ef2f5aa2 (patch) | |
tree | 1a811a2f61bb30aa52ac535f76cc9fedf19ba13b /src | |
parent | a07ed72a9bb3be753a065e161ea8fb7aefa76d59 (diff) |
Core/Vmaps: build fix
(cherry picked from commit a409287feffae22b9690cfc58d6e3e877fe39e28)
Diffstat (limited to 'src')
-rw-r--r-- | src/common/Collision/RegularGrid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Collision/RegularGrid.h b/src/common/Collision/RegularGrid.h index 70fa5bfb4b8..84aa6572486 100644 --- a/src/common/Collision/RegularGrid.h +++ b/src/common/Collision/RegularGrid.h @@ -66,7 +66,7 @@ public: void remove(const T& value) { - for (MemberTable::value_type& p : Trinity::Containers::MapEqualRange(memberTable, &value)) + for (typename MemberTable::value_type& p : Trinity::Containers::MapEqualRange(memberTable, &value)) p.second->remove(value); // Remove the member memberTable.erase(&value); |