BLI: remove non const accessors in VectorSet

With this the values could have been changed without
updating the hash table.
This commit is contained in:
Jacques Lucke 2019-09-14 13:30:24 +02:00
parent dd8a70c246
commit 5b00ecf70b
1 changed files with 0 additions and 10 deletions

View File

@ -274,16 +274,6 @@ template<typename T, typename Allocator = GuardedAllocator> class VectorSet {
return m_array.slots_set();
}
T *begin()
{
return m_elements.begin();
}
T *end()
{
return m_elements.end();
}
const T *begin() const
{
return m_elements.begin();