summaryrefslogtreecommitdiff
path: root/src/support/small_vector.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/support/small_vector.h')
-rw-r--r--src/support/small_vector.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/support/small_vector.h b/src/support/small_vector.h
index 7f00bd4a6..d4ad961a7 100644
--- a/src/support/small_vector.h
+++ b/src/support/small_vector.h
@@ -38,17 +38,15 @@ template<typename T, size_t N> class SmallVector {
std::vector<T> flexible;
public:
+ using value_type = T;
+
SmallVector() {}
T& operator[](size_t i) {
- if (i < N) {
- return fixed[i];
- } else {
- return flexible[i - N];
- }
+ return const_cast<T&>(static_cast<const SmallVector<T, N>&>(*this)[i]);
}
- T operator[](size_t i) const {
+ const T& operator[](size_t i) const {
if (i < N) {
return fixed[i];
} else {