aboutsummaryrefslogtreecommitdiff
path: root/common/singleton.h
diff options
context:
space:
mode:
authorTravis Howell2004-12-29 05:01:27 +0000
committerTravis Howell2004-12-29 05:01:27 +0000
commitd6547ea5362067a76ebe2fd4be799662393c4895 (patch)
tree6805fd50a95c35348f96ff2aaa693ce4d30b8a30 /common/singleton.h
parentdb249a8fe1a7f6e8fb69beeb3d8621e323778a78 (diff)
downloadscummvm-rg350-d6547ea5362067a76ebe2fd4be799662393c4895.tar.gz
scummvm-rg350-d6547ea5362067a76ebe2fd4be799662393c4895.tar.bz2
scummvm-rg350-d6547ea5362067a76ebe2fd4be799662393c4895.zip
Compile fix from cyx
svn-id: r16366
Diffstat (limited to 'common/singleton.h')
-rw-r--r--common/singleton.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/singleton.h b/common/singleton.h
index 8ea666cbed..711626781f 100644
--- a/common/singleton.h
+++ b/common/singleton.h
@@ -60,7 +60,7 @@ protected:
//template <class T>
//T* Singleton<T>::_singleton=0;
-#define DECLARE_SINGLETON(T) T* Common::Singleton<T>::_singleton=0
+#define DECLARE_SINGLETON(T) template<> T* Common::Singleton<T>::_singleton=0
} // End of namespace Common