diff options
-rw-r--r-- | lib/VMCore/ValueHolderImpl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/VMCore/ValueHolderImpl.h b/lib/VMCore/ValueHolderImpl.h index 1bfdd2512e..9d0e87413f 100644 --- a/lib/VMCore/ValueHolderImpl.h +++ b/lib/VMCore/ValueHolderImpl.h @@ -17,7 +17,7 @@ template<class ValueSubclass, class ItemParentType> void ValueHolder<ValueSubclass,ItemParentType>::setParent(SymTabValue *P) { if (Parent) { // Remove all of the items from the old symbol table.. SymbolTable *SymTab = Parent->getSymbolTable(); - for (iterator I = begin(); I != end(); I++) + for (iterator I = begin(); I != end(); ++I) if ((*I)->hasName()) SymTab->remove(*I); } @@ -25,7 +25,7 @@ void ValueHolder<ValueSubclass,ItemParentType>::setParent(SymTabValue *P) { if (Parent) { // Remove all of the items from the old symbol table.. SymbolTable *SymTab = Parent->getSymbolTableSure(); - for (iterator I = begin(); I != end(); I++) + for (iterator I = begin(); I != end(); ++I) if ((*I)->hasName()) SymTab->insert(*I); } } |