diff options
author | ariel- <ariel-@users.noreply.github.com> | 2017-06-08 18:45:12 -0300 |
---|---|---|
committer | ariel- <ariel-@users.noreply.github.com> | 2017-06-08 18:45:12 -0300 |
commit | a409287feffae22b9690cfc58d6e3e877fe39e28 (patch) | |
tree | ba14de70a1674d59a54ecb49b49a701102b2ddd1 /src | |
parent | b8535dab46dd2c2f9385e34ef805f001b28cb68e (diff) |
Core/Vmaps: build fix
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 edc1ab6c36b..ca916d79e1b 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); |