From cd503a0d891e166622d88fd2e51eeaa323b35357 Mon Sep 17 00:00:00 2001 From: Vesa Karvonen Date: Sun, 16 Jun 2002 20:23:00 +0000 Subject: [PATCH] Attempt to workaround VC6 preprocessor bug by increasing rescanning [SVN r14155] --- include/boost/preprocessor/detail/expand.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/boost/preprocessor/detail/expand.hpp b/include/boost/preprocessor/detail/expand.hpp index dde4af0..2fb8fff 100644 --- a/include/boost/preprocessor/detail/expand.hpp +++ b/include/boost/preprocessor/detail/expand.hpp @@ -11,5 +11,6 @@ * See http://www.boost.org for most recent version. */ -#define BOOST_PP_DETAIL_EXPAND(X) X +#define BOOST_PP_DETAIL_EXPAND(X) BOOST_PP_DETAIL_EXPAND_DELAY(X) +#define BOOST_PP_DETAIL_EXPAND_DELAY(X) X #endif