mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-20 11:08:27 +00:00
Delete dead code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@251749 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2825a23253
commit
05a69d8e6c
@ -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
Block a user