Fix previous checkin

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3093 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-07-25 17:58:58 +00:00
parent f8820c353b
commit 30bc0547d9

View File

@ -142,6 +142,8 @@ template<class Payload>
class InstForest : public std::vector<InstTreeNode<Payload> *> {
friend class InstTreeNode<Payload>;
typedef std::vector<InstTreeNode<Payload> *>::const_iterator const_iterator;
// InstMap - Map contains entries for ALL instructions in the method and the
// InstTreeNode that they correspond to.
//
@ -196,7 +198,7 @@ public:
// print - Called by operator<< below...
void print(std::ostream &out) const {
for (typename const_iterator I = begin(), E = end(); I != E; ++I)
for (const_iterator I = begin(), E = end(); I != E; ++I)
out << *I;
}
};