make this build on older gcc

This commit is contained in:
Seth Alves 2015-05-27 10:38:15 -07:00
parent 6fd38fabe4
commit 5e66a079c4

View file

@ -309,7 +309,7 @@ public:
protected:
T* _ptr;
int _stride = sizeof(T);
int _stride;
};
template <typename T> Iterator<T> begin() { return Iterator<T>(&edit<T>(0), _stride); }