forked from OSchip/llvm-project
PostOrderIterator: Remove stray semicolon
llvm-svn: 232316
This commit is contained in:
parent
a66dc8f689
commit
4ca5191290
|
@ -154,10 +154,7 @@ public:
|
|||
// time... so that you can actually call methods ON the BasicBlock, because
|
||||
// the contained type is a pointer. This allows BBIt->getTerminator() f.e.
|
||||
//
|
||||
NodeType *operator->() const {
|
||||
return **this;
|
||||
;
|
||||
}
|
||||
NodeType *operator->() const { return **this; }
|
||||
|
||||
po_iterator &operator++() { // Preincrement
|
||||
this->finishPostorder(VisitStack.back().first);
|
||||
|
|
Loading…
Reference in New Issue