aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/object.h
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/hugo/object.h
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/hugo/object.h')
-rw-r--r--engines/hugo/object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hugo/object.h b/engines/hugo/object.h
index c0933729eb..84c20db041 100644
--- a/engines/hugo/object.h
+++ b/engines/hugo/object.h
@@ -117,7 +117,7 @@ protected:
void restoreSeq(object_t *obj);
inline bool checkBoundary(int16 x, int16 y);
- template <typename T>
+ template<typename T>
inline int sign(T a) { if ( a < 0) return -1; else return 1; }
};