aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction
diff options
context:
space:
mode:
authorTarek Soliman2012-02-10 21:14:48 -0600
committerTarek Soliman2012-02-10 21:17:27 -0600
commitedc52497726139498bb68e3b3334a792b3602ede (patch)
tree2e474075f6c74e1cae19ed9e7154fcc8793c48bc /engines/parallaction
parent0deea6fbf89d608130d89b06dce2497e036d68aa (diff)
downloadscummvm-rg350-edc52497726139498bb68e3b3334a792b3602ede.tar.gz
scummvm-rg350-edc52497726139498bb68e3b3334a792b3602ede.tar.bz2
scummvm-rg350-edc52497726139498bb68e3b3334a792b3602ede.zip
JANITORIAL: Fix template definition whitespace
Diffstat (limited to 'engines/parallaction')
-rw-r--r--engines/parallaction/exec.h2
-rw-r--r--engines/parallaction/parallaction.cpp2
-rw-r--r--engines/parallaction/parallaction.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/engines/parallaction/exec.h b/engines/parallaction/exec.h
index 4ca3947514..b7b8a571f4 100644
--- a/engines/parallaction/exec.h
+++ b/engines/parallaction/exec.h
@@ -71,7 +71,7 @@ typedef Common::Array<const ProgramOpcode*> ProgramOpcodeSet;
#define DECLARE_UNQUALIFIED_INSTRUCTION_OPCODE(op) void instOp_##op(ProgramContext &)
-template <class OpcodeSet>
+template<class OpcodeSet>
class Exec {
protected:
OpcodeSet _opcodes;
diff --git a/engines/parallaction/parallaction.cpp b/engines/parallaction/parallaction.cpp
index 2fffc9071c..3b1b7d54a0 100644
--- a/engines/parallaction/parallaction.cpp
+++ b/engines/parallaction/parallaction.cpp
@@ -795,7 +795,7 @@ bool Location::keepAnimation_br(AnimationPtr a) {
return keepZone_br(a);
}
-template <class T>
+template<class T>
void Location::freeList(Common::List<T> &list, bool removeAll, Common::MemFunc1<bool, T, Location> filter) {
typedef typename Common::List<T>::iterator iterator;
iterator it = list.begin();
diff --git a/engines/parallaction/parallaction.h b/engines/parallaction/parallaction.h
index 5554eff3c5..6c3ff11d15 100644
--- a/engines/parallaction/parallaction.h
+++ b/engines/parallaction/parallaction.h
@@ -178,7 +178,7 @@ protected:
bool keepAnimation_ns(AnimationPtr a);
bool keepAnimation_br(AnimationPtr a);
- template <class T>
+ template<class T>
void freeList(Common::List<T> &list, bool removeAll, Common::MemFunc1<bool, T, Location> filter);
public: