CodeWarrior workaround

[SVN r14180]
This commit is contained in:
Dave Abrahams
2002-06-19 13:36:43 +00:00
parent 5652ca0d38
commit 89782cd9be

View File

@ -11,6 +11,11 @@
* See http://www.boost.org for most recent version.
*/
#define BOOST_PP_DETAIL_EXPAND(X) X
#define BOOST_PP_DETAIL_EXPAND2(X,Y) BOOST_PP_DETAIL_EXPAND(X Y)
# define BOOST_PP_DETAIL_EXPAND(X) X
# if !defined(__MWERKS__) || __MWERKS__ > 0x3000
# 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)
# define BOOST_PP_DETAIL_EXPAND2_DELAY(X, Y) X ## Y
# endif
#endif