14 Nov
2003
14 Nov
'03
12:25 p.m.
STLport defines _STLP_NO_MEMBER_TEMPLATE_KEYWORD for VC++6.0. I'm not exactly sure what that means. But the compiler test case in stlport for that define looks very similar to what is done at line 67 in detail/allocator.hpp.
If I'm right, the solution is to att the following to boost stlport.hpp at line 79: #if defined(_STLP_NO_MEMBER_TEMPLATE_KEYWORD) # define BOOST_NO_STD_ALLOCATOR #endif
Thanks, you're right defining BOOST_NO_STD_ALLOCATOR fixes the problem - the fix will be in cvs soon. John