same bug on arm-wince-gcc 4.1.0
svn-id: r30014
This commit is contained in:
parent
e36f79fcdf
commit
1312d4b3fd
1 changed files with 2 additions and 1 deletions
|
@ -120,8 +120,9 @@ public:
|
||||||
class Iterator {
|
class Iterator {
|
||||||
typedef const HashMap<Key, Val, HashFunc, EqualFunc> *hashmap_t;
|
typedef const HashMap<Key, Val, HashFunc, EqualFunc> *hashmap_t;
|
||||||
friend class HashMap<Key, Val, HashFunc, EqualFunc>;
|
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)
|
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
|
#endif
|
||||||
uint _idx;
|
uint _idx;
|
||||||
hashmap_t _hashmap;
|
hashmap_t _hashmap;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue