diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/singleton.h | 4 |
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(); } |