aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--common/list.h4
-rw-r--r--common/singleton.h4
2 files changed, 6 insertions, 2 deletions
diff --git a/common/list.h b/common/list.h
index 6e9cf83dab..b64e6304c4 100644
--- a/common/list.h
+++ b/common/list.h
@@ -33,6 +33,10 @@ namespace Common {
template <class T>
class List {
protected:
+#if defined (_WIN32_WCE) || (_MSC_VER)
+//FIXME evc4 and msvc7 doesn't like it as protected member
+public:
+#endif
struct NodeBase {
NodeBase *_prev;
NodeBase *_next;
diff --git a/common/singleton.h b/common/singleton.h
index 7d9f5e04d6..7e1290b4cd 100644
--- a/common/singleton.h
+++ b/common/singleton.h
@@ -45,8 +45,8 @@ private:
* and you specialise makeInstance to return an instance of a subclass.
*/
//template <class T>
-#ifdef _WIN32_WCE
-//FIXME
+#if defined (_WIN32_WCE) || (_MSC_VER)
+//FIXME evc4 and msvc7 doesn't like it as private member
public:
#endif
static T* makeInstance() {