Adjust version number for old EDG workaround

[SVN r15416]
This commit is contained in:
Dave Abrahams
2002-09-17 18:17:24 +00:00
parent 6c991858b2
commit 0123ed0f2c

View File

@@ -31,7 +31,7 @@ struct integral_c
// have to #ifdef here: some compilers don't like the 'N + 1' form (MSVC), // have to #ifdef here: some compilers don't like the 'N + 1' form (MSVC),
// while some other don't like 'value + 1' (Borland) // while some other don't like 'value + 1' (Borland)
#if defined(__EDG_VERSION__) && __EDG_VERSION__ <= 241 #if defined(__EDG_VERSION__) && __EDG_VERSION__ <= 243
private: private:
BOOST_STATIC_CONSTANT(T, next_value = (N + 1)); BOOST_STATIC_CONSTANT(T, next_value = (N + 1));
BOOST_STATIC_CONSTANT(T, prior_value = (N - 1)); BOOST_STATIC_CONSTANT(T, prior_value = (N - 1));