From 0123ed0f2c330ab88371e0ba1d9741d25e9636ed Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Tue, 17 Sep 2002 18:17:24 +0000 Subject: [PATCH] Adjust version number for old EDG workaround [SVN r15416] --- include/boost/mpl/integral_c.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/mpl/integral_c.hpp b/include/boost/mpl/integral_c.hpp index 929fcbe..a5eea33 100644 --- a/include/boost/mpl/integral_c.hpp +++ b/include/boost/mpl/integral_c.hpp @@ -31,7 +31,7 @@ struct integral_c // have to #ifdef here: some compilers don't like the 'N + 1' form (MSVC), // while some other don't like 'value + 1' (Borland) -#if defined(__EDG_VERSION__) && __EDG_VERSION__ <= 241 +#if defined(__EDG_VERSION__) && __EDG_VERSION__ <= 243 private: BOOST_STATIC_CONSTANT(T, next_value = (N + 1)); BOOST_STATIC_CONSTANT(T, prior_value = (N - 1));