aboutsummaryrefslogtreecommitdiff
path: root/common/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/list.h')
-rw-r--r--common/list.h4
1 files changed, 4 insertions, 0 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;