diff options
author | Kostas Nakos | 2007-12-27 16:40:58 +0000 |
---|---|---|
committer | Kostas Nakos | 2007-12-27 16:40:58 +0000 |
commit | 1312d4b3fd81facd1680a42eb0171a8d76b7cc55 (patch) | |
tree | 0c531542a6a0b4586295b104ad44a53d7edcb68f /common | |
parent | e36f79fcdf43d25b66a44d3787435822b317c547 (diff) | |
download | scummvm-rg350-1312d4b3fd81facd1680a42eb0171a8d76b7cc55.tar.gz scummvm-rg350-1312d4b3fd81facd1680a42eb0171a8d76b7cc55.tar.bz2 scummvm-rg350-1312d4b3fd81facd1680a42eb0171a8d76b7cc55.zip |
same bug on arm-wince-gcc 4.1.0
svn-id: r30014
Diffstat (limited to 'common')
-rw-r--r-- | common/hashmap.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/hashmap.h b/common/hashmap.h index 2010215991..fbefbc916e 100644 --- a/common/hashmap.h +++ b/common/hashmap.h @@ -120,8 +120,9 @@ public: class Iterator { typedef const HashMap<Key, Val, HashFunc, EqualFunc> *hashmap_t; friend class HashMap<Key, Val, HashFunc, EqualFunc>; -#if (__GNUC__ == 4) && (__GNUC_MINOR__ == 0) +#if (__GNUC__ == 4) && ( (__GNUC_MINOR__ == 0) || (__GNUC_MINOR__ == 1 && defined(_WIN32_WCE)) ) public: // FIXME: Work around a bug in gcc version 4.0 (gcc 4.0.1 Apple Computer, Inc. build 5367 and gcc 4.0.2 AmigaOS build 20051012) + // Also in gcc v. 4.1.0 for windows ce (cegcc) #endif uint _idx; hashmap_t _hashmap; |