diff options
author | Eugene Sandulenko | 2005-05-10 00:39:59 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2005-05-10 00:39:59 +0000 |
commit | 3890d18e0cba28e4a1c1daf1ddf2a0e5c5a3ddf0 (patch) | |
tree | 194f988978be34d176cf61c6f357ae8b2dae08bb | |
parent | 6e07c772afd06016f5f1e30a11a7d171bbb5c8fb (diff) | |
download | scummvm-rg350-3890d18e0cba28e4a1c1daf1ddf2a0e5c5a3ddf0.tar.gz scummvm-rg350-3890d18e0cba28e4a1c1daf1ddf2a0e5c5a3ddf0.tar.bz2 scummvm-rg350-3890d18e0cba28e4a1c1daf1ddf2a0e5c5a3ddf0.zip |
Fix compilation
svn-id: r18016
-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 7e1290b4cd..5be31e2c24 100644 --- a/common/singleton.h +++ b/common/singleton.h @@ -45,7 +45,7 @@ private: * and you specialise makeInstance to return an instance of a subclass. */ //template <class T> -#if defined (_WIN32_WCE) || (_MSC_VER) +#if defined (_WIN32_WCE) || defined (_MSC_VER) //FIXME evc4 and msvc7 doesn't like it as private member public: #endif |