We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
this->
1 parent 8d2e9bc commit 3302586Copy full SHA for 3302586
libc/utils/CPP/ArrayRef.h
@@ -81,7 +81,7 @@ template <typename T> class MutableArrayRef : public ArrayRef<T> {
81
T *data() const { return const_cast<T *>(ArrayRef<T>::data()); }
82
83
iterator begin() const { return data(); }
84
- iterator end() const { return data() + size(); }
+ iterator end() const { return data() + this->size(); }
85
86
T &operator[](size_t Index) const { return data()[Index]; }
87
};
0 commit comments