Skip to content

Commit e558be5

Browse files
committed
[STLExtras] Undo C++20 hack
c312f02 worked around a bug here, but that has since been fixed in 47747da
1 parent b0cc47c commit e558be5

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

llvm/include/llvm/ADT/STLExtras.h

+5-9
Original file line numberDiff line numberDiff line change
@@ -1291,15 +1291,11 @@ class indexed_accessor_range_base {
12911291
}
12921292

12931293
/// Compare this range with another.
1294-
template <typename OtherT>
1295-
friend bool operator==(const indexed_accessor_range_base &lhs,
1296-
const OtherT &rhs) {
1297-
return std::equal(lhs.begin(), lhs.end(), rhs.begin(), rhs.end());
1298-
}
1299-
template <typename OtherT>
1300-
friend bool operator!=(const indexed_accessor_range_base &lhs,
1301-
const OtherT &rhs) {
1302-
return !(lhs == rhs);
1294+
template <typename OtherT> bool operator==(const OtherT &rhs) const {
1295+
return std::equal(begin(), end(), rhs.begin(), rhs.end());
1296+
}
1297+
template <typename OtherT> bool operator!=(const OtherT &rhs) const {
1298+
return !(*this == rhs);
13031299
}
13041300

13051301
/// Return the size of this range.

0 commit comments

Comments
 (0)