aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaweł Kołodziejski2005-01-27 21:29:29 +0000
committerPaweł Kołodziejski2005-01-27 21:29:29 +0000
commitc0c9a68fe5d5a61ec53774249e678385aef283ac (patch)
tree96545cb717f94db8e36e2ba15ada8dbee19c4878
parent87a6768009d5fda7deab0a205b9535b302b776c5 (diff)
downloadscummvm-rg350-c0c9a68fe5d5a61ec53774249e678385aef283ac.tar.gz
scummvm-rg350-c0c9a68fe5d5a61ec53774249e678385aef283ac.tar.bz2
scummvm-rg350-c0c9a68fe5d5a61ec53774249e678385aef283ac.zip
emsvc4 need public access, hmmm...
svn-id: r16650
-rw-r--r--common/singleton.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/singleton.h b/common/singleton.h
index dcc4241f27..7d9f5e04d6 100644
--- a/common/singleton.h
+++ b/common/singleton.h
@@ -45,6 +45,10 @@ private:
* and you specialise makeInstance to return an instance of a subclass.
*/
//template <class T>
+#ifdef _WIN32_WCE
+//FIXME
+public:
+#endif
static T* makeInstance() {
return new T();
}