aboutsummaryrefslogtreecommitdiff
path: root/common/array.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/array.h')
-rw-r--r--common/array.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/common/array.h b/common/array.h
index eb6b0cddb6..ff98ec4307 100644
--- a/common/array.h
+++ b/common/array.h
@@ -140,10 +140,6 @@ public:
return _data + _size;
}
- bool contains(const T &key) const {
- return find(begin(), end(), key) != end();
- }
-
void reserve(uint newCapacity) {
if (newCapacity <= _capacity)
return;