forked from boostorg/range
Changed - effectively I rolled back the last change because it clobbers
VC7.1 and VC8.0 tests (they do NOT show in the regression, which is another problem altogether) as well as killing some code of mine which uses boost::array. NOTE - I've commented out the one line I replaced so that more people can look at this change and decide what it _really_ needs to be (I haven't the time to so do). One thing that seems VERY odd is the changing of the && to || in the "new" line. [SVN r28066]
This commit is contained in:
@ -33,7 +33,8 @@
|
||||
#error "macro already defined!"
|
||||
#endif
|
||||
|
||||
#if BOOST_WORKAROUND( BOOST_MSVC, <= 1200 ) || __MWERKS__ <= 0x3003
|
||||
//#if BOOST_WORKAROUND( BOOST_MSVC, <= 1200 ) || __MWERKS__ <= 0x3003
|
||||
#if _MSC_VER <= 1200 && !defined( __COMO__ ) && !defined( __GNUC__ ) && __MWERKS__ <= 0x3003
|
||||
#define BOOST_RANGE_NO_ARRAY_SUPPORT 1
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user