aboutsummaryrefslogtreecommitdiff
path: root/common/list.h
diff options
context:
space:
mode:
authorPaweł Kołodziejski2005-05-09 22:39:16 +0000
committerPaweł Kołodziejski2005-05-09 22:39:16 +0000
commitc1ce66efb6fecc30f4f26b7eecaadbd91019dd90 (patch)
treef6aaf6a87196d83b17d6552098419a7ec526c787 /common/list.h
parent39cb499fcf7e1af3354e8ac77dac03d04a48ce79 (diff)
downloadscummvm-rg350-c1ce66efb6fecc30f4f26b7eecaadbd91019dd90.tar.gz
scummvm-rg350-c1ce66efb6fecc30f4f26b7eecaadbd91019dd90.tar.bz2
scummvm-rg350-c1ce66efb6fecc30f4f26b7eecaadbd91019dd90.zip
fixed compilation for evc4 and vc7
svn-id: r18013
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;