[libc] Add a missing this-> in __llvm_libc::cpp:MutableArrayRef::end.

I had removed it to verify a review comment, but forgot to put it back.
This commit is contained in:
Siva Chandra Reddy 2020-01-30 09:09:17 -08:00
parent 8d2e9bca7e
commit 3302586fae

View File

@ -81,7 +81,7 @@ public:
T *data() const { return const_cast<T *>(ArrayRef<T>::data()); }
iterator begin() const { return data(); }
iterator end() const { return data() + size(); }
iterator end() const { return data() + this->size(); }
T &operator[](size_t Index) const { return data()[Index]; }
};