forked from OSchip/llvm-project
Implemented operator!= for the ImmutableList iterator.
llvm-svn: 52998
This commit is contained in:
parent
e6cc6bb5b3
commit
19941499b8
|
@ -85,8 +85,9 @@ public:
|
||||||
iterator() : L(0) {}
|
iterator() : L(0) {}
|
||||||
iterator(ImmutableList l) : L(l.getInternalPointer()) {}
|
iterator(ImmutableList l) : L(l.getInternalPointer()) {}
|
||||||
|
|
||||||
iterator& operator++() { L = L->Tail; return *this; }
|
iterator& operator++() { L = L->getTail(); return *this; }
|
||||||
bool operator==(const iterator& I) const { return L == I.L; }
|
bool operator==(const iterator& I) const { return L == I.L; }
|
||||||
|
bool operator!=(const iterator& I) const { return L != I.L; }
|
||||||
ImmutableList operator*() const { return L; }
|
ImmutableList operator*() const { return L; }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue