aboutsummaryrefslogtreecommitdiff
path: root/src/common/Containers/FlatSet.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/Containers/FlatSet.h')
-rw-r--r--src/common/Containers/FlatSet.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/Containers/FlatSet.h b/src/common/Containers/FlatSet.h
index 5602ba17254..2a94282794a 100644
--- a/src/common/Containers/FlatSet.h
+++ b/src/common/Containers/FlatSet.h
@@ -70,7 +70,7 @@ public:
return { _storage.emplace(itr, std::move(newElement)), true };
}
- std::pair<iterator, bool> insert(Key const& key) { return emplace(key); }
+ std::pair<iterator, bool> insert(Key const& key) { return this->emplace(key); }
std::size_t erase(Key const& key)
{