diff options
Diffstat (limited to 'src/support/small_vector.h')
-rw-r--r-- | src/support/small_vector.h | 10 |
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 { |