Bug fix for old EDG branch

[SVN r16404]
This commit is contained in:
Dave Abrahams
2002-11-25 13:50:20 +00:00
parent 957c79bbb4
commit 7ef7fbfdf9

View File

@@ -34,8 +34,8 @@ struct int_c
// either // either
#if defined(__EDG_VERSION__) && __EDG_VERSION__ <= 243 #if defined(__EDG_VERSION__) && __EDG_VERSION__ <= 243
private: private:
BOOST_STATIC_CONSTANT(T, next_value = (N + 1)); BOOST_STATIC_CONSTANT(int, next_value = (N + 1));
BOOST_STATIC_CONSTANT(T, prior_value = (N - 1)); BOOST_STATIC_CONSTANT(int, prior_value = (N - 1));
public: public:
typedef int_c<next_value> next; typedef int_c<next_value> next;
typedef int_c<prior_value> prior; typedef int_c<prior_value> prior;