diff options
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/smallvec_type.hpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/core/smallvec_type.hpp b/src/core/smallvec_type.hpp index 7d856ca9b..5225d13da 100644 --- a/src/core/smallvec_type.hpp +++ b/src/core/smallvec_type.hpp @@ -138,17 +138,6 @@ public: } /** - * Remove items from the vector while preserving the order of other items. - * @param pos First item to remove. - * @param count Number of consecutive items to remove. - */ - void ErasePreservingOrder(uint pos, uint count = 1) - { - auto const it = std::vector<T>::begin() + pos; - std::vector<T>::erase(it, it + count); - } - - /** * Tests whether a item is present in the vector, and appends it to the end if not. * The '!=' operator of T is used for comparison. * @param item Item to test for |