mirror of
https://github.com/intel/llvm.git
synced 2026-01-17 23:45:25 +08:00
[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:
@@ -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]; }
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user