summaryrefslogtreecommitdiff
path: root/src/core/smallvec_type.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/smallvec_type.hpp')
-rw-r--r--src/core/smallvec_type.hpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/core/smallvec_type.hpp b/src/core/smallvec_type.hpp
index 81b9cf7ee..a682697b3 100644
--- a/src/core/smallvec_type.hpp
+++ b/src/core/smallvec_type.hpp
@@ -180,19 +180,6 @@ public:
assert(index <= std::vector<T>::size());
return this->Begin() + index;
}
-
- /**
- * Get the pointer to item "number"
- *
- * @param index the position of the item
- * @return the pointer to the item
- */
- inline T *Get(uint index)
- {
- /* Allow access to the 'first invalid' item */
- assert(index <= std::vector<T>::size());
- return this->Begin() + index;
- }
};