mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-31 00:45:27 -04:00
Remove template args on TLinkList::const_iterator comparison operators
This commit is contained in:
@@ -217,8 +217,8 @@ public:
|
||||
public:
|
||||
const_iterator(TNodeLinkList::const_iterator it) : mIt(it) { }
|
||||
|
||||
friend bool operator== <T, O>(const_iterator lhs, const_iterator rhs) { return (lhs.mIt == rhs.mIt); }
|
||||
friend bool operator!= <T, O>(const_iterator lhs, const_iterator rhs) { return !(lhs == rhs); }
|
||||
friend bool operator==(const_iterator lhs, const_iterator rhs) { return (lhs.mIt == rhs.mIt); }
|
||||
friend bool operator!=(const_iterator lhs, const_iterator rhs) { return !(lhs == rhs); }
|
||||
|
||||
const_iterator& operator++() {
|
||||
++mIt;
|
||||
|
||||
Reference in New Issue
Block a user