ZVISION: Conform to GCC spacing for template inside template

This commit is contained in:
richiesams 2013-07-15 10:33:49 -05:00
parent f88127104b
commit c45a13cdd7
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ void ScriptManager::createReferenceTable() {
}
// Remove duplicate entries
for (Common::HashMap<uint32, Common::Array<Puzzle *>>::iterator referenceTableIter; referenceTableIter != _referenceTable.end(); referenceTableIter++) {
for (Common::HashMap<uint32, Common::Array<Puzzle *> >::iterator referenceTableIter; referenceTableIter != _referenceTable.end(); referenceTableIter++) {
removeDuplicateEntries(&(referenceTableIter->_value));
}
}

View File

@ -51,7 +51,7 @@ private:
/** Holds the currently active ActionNodes */
Common::List<ActionNode *> _activeNodes;
/** References _globalState keys to Puzzles */
Common::HashMap<uint32, Common::Array<Puzzle *>> _referenceTable;
Common::HashMap<uint32, Common::Array<Puzzle *> > _referenceTable;
/** Holds the Puzzles that should be checked this frame */
Common::Stack<Puzzle *> _puzzlesToCheck;
/** Holds the currently active puzzles */