From 849cd0933db8af7191be6ce8e1d39b0452d43eea Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Tue, 10 Aug 2004 03:32:04 +0000 Subject: "" svn path=/trunk/; revision=1934 --- externals/grill/flext/source/flmap.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'externals/grill/flext/source/flmap.h') diff --git a/externals/grill/flext/source/flmap.h b/externals/grill/flext/source/flmap.h index b32b2652..e93b5466 100644 --- a/externals/grill/flext/source/flmap.h +++ b/externals/grill/flext/source/flmap.h @@ -46,7 +46,12 @@ public: { public: iterator() {} - iterator(AnyMap::iterator it): AnyMap::iterator(it) {} +#if defined(_MSC_VER) && (_MSC_VER < 0x1300) + // with the MSVC6 STL implementation iterators can't be initialized... + iterator(AnyMap::iterator &it) { static_cast(*this) = it; } +#else + iterator(AnyMap::iterator &it): AnyMap::iterator(it) {} +#endif inline K &key() const { return *(K *)&((*this)->first); } inline T &data() const { return *(T *)&((*this)->second); } -- cgit v1.2.1