mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-06 09:48:39 +00:00
ZVISION: Conform to GCC spacing for template inside template
This commit is contained in:
parent
f88127104b
commit
c45a13cdd7
engines/zvision
@ -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));
|
||||
}
|
||||
}
|
||||
|
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user