PostOrderIterator: Remove stray semicolon

llvm-svn: 232316
This commit is contained in:
David Majnemer 2015-03-15 07:09:18 +00:00
parent a66dc8f689
commit 4ca5191290
1 changed files with 1 additions and 4 deletions

View File

@ -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);