mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-24 06:10:12 +00: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:
parent
8d2e9bca7e
commit
3302586fae
@ -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]; }
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user