From f7fefa2a1f82e9faee12e5576a52177421dab323 Mon Sep 17 00:00:00 2001 From: Aleksey Gurtovoy Date: Tue, 9 Jul 2002 14:01:46 +0000 Subject: [PATCH] bumped up __MWERKS__ version check for 8.1 [SVN r14369] --- include/boost/preprocessor/array.hpp | 6 +++--- include/boost/preprocessor/detail/expand.hpp | 2 +- include/boost/preprocessor/detail/line.hpp | 2 +- include/boost/preprocessor/iterate.hpp | 2 +- include/boost/preprocessor/tuple/elem.hpp | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/include/boost/preprocessor/array.hpp b/include/boost/preprocessor/array.hpp index 9102624..7885f17 100644 --- a/include/boost/preprocessor/array.hpp +++ b/include/boost/preprocessor/array.hpp @@ -15,7 +15,7 @@ # # define BOOST_PP_ARRAY(size, data) (size, data) # -# if !defined(__MWERKS__) || __MWERKS__ > 0x3000 +# if !defined(__MWERKS__) || __MWERKS__ > 0x3001 # define BOOST_PP_ARRAY_SIZE(arr) BOOST_PP_ARRAY_SIZE_I arr # else # define BOOST_PP_ARRAY_SIZE(arr) BOOST_PP_ARRAY_SIZE_D(arr) @@ -24,7 +24,7 @@ # # define BOOST_PP_ARRAY_SIZE_I(size, data) size # -# if !defined(__MWERKS__) || __MWERKS__ > 0x3000 +# if !defined(__MWERKS__) || __MWERKS__ > 0x3001 # define BOOST_PP_ARRAY_DATA(arr) BOOST_PP_ARRAY_DATA_I arr # else # define BOOST_PP_ARRAY_DATA(arr) BOOST_PP_ARRAY_DATA_D(arr) @@ -33,7 +33,7 @@ # # define BOOST_PP_ARRAY_DATA_I(size, data) data # -# if !defined(__MWERKS__) || __MWERKS__ > 0x3000 +# if !defined(__MWERKS__) || __MWERKS__ > 0x3001 # define BOOST_PP_ARRAY_ELEM(i, arr) BOOST_PP_TUPLE_ELEM(BOOST_PP_ARRAY_SIZE_I arr, i, BOOST_PP_ARRAY_DATA_I arr) # else # define BOOST_PP_ARRAY_ELEM(i, arr) BOOST_PP_ARRAY_ELEM_D(i, arr) diff --git a/include/boost/preprocessor/detail/expand.hpp b/include/boost/preprocessor/detail/expand.hpp index 7e46412..08b7939 100644 --- a/include/boost/preprocessor/detail/expand.hpp +++ b/include/boost/preprocessor/detail/expand.hpp @@ -12,7 +12,7 @@ */ # define BOOST_PP_DETAIL_EXPAND(X) X -# if !defined(__MWERKS__) || __MWERKS__ > 0x3000 +# if !defined(__MWERKS__) || __MWERKS__ > 0x3001 # define BOOST_PP_DETAIL_EXPAND2(X,Y) BOOST_PP_DETAIL_EXPAND(X Y) # else # define BOOST_PP_DETAIL_EXPAND2(X, Y) BOOST_PP_DETAIL_EXPAND2_DELAY(X, Y) diff --git a/include/boost/preprocessor/detail/line.hpp b/include/boost/preprocessor/detail/line.hpp index 180d5d3..e32aff5 100644 --- a/include/boost/preprocessor/detail/line.hpp +++ b/include/boost/preprocessor/detail/line.hpp @@ -13,7 +13,7 @@ # # include # -# if !defined(__MWERKS__) || __MWERKS__ > 0x3000 +# if !defined(__MWERKS__) || __MWERKS__ > 0x3001 # define BOOST_PP_DETAIL_LINE(text) 1 BOOST_PP_STRINGIZE(text) # else # define BOOST_PP_DETAIL_LINE(text) 1 diff --git a/include/boost/preprocessor/iterate.hpp b/include/boost/preprocessor/iterate.hpp index cb7bcf0..88d8ac9 100644 --- a/include/boost/preprocessor/iterate.hpp +++ b/include/boost/preprocessor/iterate.hpp @@ -54,7 +54,7 @@ # define BOOST_PP_SET_ITERATION_FINISH() BOOST_PP_DETAIL_CAT3() # define BOOST_PP_SET_ITERATION_FLAGS() BOOST_PP_DETAIL_CAT3() # -# if !defined(__MWERKS__) || __MWERKS__ > 0x3000 +# if !defined(__MWERKS__) || __MWERKS__ > 0x3001 # define BOOST_PP_LINE(line, file) line BOOST_PP_STRINGIZE(BOOST_PP_DETAIL_CAT2(file, BOOST_PP_DETAIL_CAT2(BOOST_PP_LINE_, BOOST_PP_ITERATION_DEPTH())())) # else # define BOOST_PP_LINE(line, file) __LINE__ __FILE__ diff --git a/include/boost/preprocessor/tuple/elem.hpp b/include/boost/preprocessor/tuple/elem.hpp index afff4ed..b38e78f 100644 --- a/include/boost/preprocessor/tuple/elem.hpp +++ b/include/boost/preprocessor/tuple/elem.hpp @@ -32,7 +32,7 @@ BOOST_PP_TUPLE_ELEM(2,1,(A,B)) */ -#if !defined(__MWERKS__) || __MWERKS__ > 0x3000 +#if !defined(__MWERKS__) || __MWERKS__ > 0x3001 # define BOOST_PP_TUPLE_ELEM(SIZE_OF_TUPLE,INDEX,TUPLE)\ BOOST_PP_DETAIL_EXPAND2(\ BOOST_PP_DETAIL_CAT2(BOOST_PP_TUPLE16_ELEM,INDEX)\