mirror of
https://github.com/boostorg/mpl.git
synced 2025-08-04 15:24:29 +02:00
Bug fix for old EDG branch
[SVN r16404]
This commit is contained in:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user