[Scummvm-cvs-logs] SF.net SVN: scummvm: [30014] scummvm/trunk/common/hashmap.h
knakos at users.sourceforge.net
knakos at users.sourceforge.net
Thu Dec 27 17:40:59 CET 2007
Revision: 30014
http://scummvm.svn.sourceforge.net/scummvm/?rev=30014&view=rev
Author: knakos
Date: 2007-12-27 08:40:58 -0800 (Thu, 27 Dec 2007)
Log Message:
-----------
same bug on arm-wince-gcc 4.1.0
Modified Paths:
--------------
scummvm/trunk/common/hashmap.h
Modified: scummvm/trunk/common/hashmap.h
===================================================================
--- scummvm/trunk/common/hashmap.h 2007-12-27 16:01:59 UTC (rev 30013)
+++ scummvm/trunk/common/hashmap.h 2007-12-27 16:40:58 UTC (rev 30014)
@@ -120,8 +120,9 @@
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;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list