diff options
author | Travis Howell | 2004-12-29 05:01:27 +0000 |
---|---|---|
committer | Travis Howell | 2004-12-29 05:01:27 +0000 |
commit | d6547ea5362067a76ebe2fd4be799662393c4895 (patch) | |
tree | 6805fd50a95c35348f96ff2aaa693ce4d30b8a30 | |
parent | db249a8fe1a7f6e8fb69beeb3d8621e323778a78 (diff) | |
download | scummvm-rg350-d6547ea5362067a76ebe2fd4be799662393c4895.tar.gz scummvm-rg350-d6547ea5362067a76ebe2fd4be799662393c4895.tar.bz2 scummvm-rg350-d6547ea5362067a76ebe2fd4be799662393c4895.zip |
Compile fix from cyx
svn-id: r16366
-rw-r--r-- | common/singleton.h | 2 |
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 |