forked from OSchip/llvm-project
parent
4a782fbfe6
commit
47b01d4f4f
|
@ -72,10 +72,6 @@ public:
|
|||
return Data.begin() == other.Data.begin();
|
||||
}
|
||||
|
||||
bool operator <(const Child &other) const {
|
||||
return Data.begin() < other.Data.begin();
|
||||
}
|
||||
|
||||
const Archive *getParent() const { return Parent; }
|
||||
Child getNext() const;
|
||||
|
||||
|
@ -123,10 +119,6 @@ public:
|
|||
return !(*this == other);
|
||||
}
|
||||
|
||||
bool operator<(const child_iterator &other) const {
|
||||
return child < other.child;
|
||||
}
|
||||
|
||||
child_iterator &operator++() { // Preincrement
|
||||
child = child.getNext();
|
||||
return *this;
|
||||
|
|
Loading…
Reference in New Issue