From 7ef7fbfdf9af64eb35d6f2ad9f9e06b0ab793bcc Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Mon, 25 Nov 2002 13:50:20 +0000 Subject: [PATCH] Bug fix for old EDG branch [SVN r16404] --- include/boost/mpl/int_c.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/mpl/int_c.hpp b/include/boost/mpl/int_c.hpp index 149a5b6..6d802d5 100644 --- a/include/boost/mpl/int_c.hpp +++ b/include/boost/mpl/int_c.hpp @@ -34,8 +34,8 @@ struct int_c // either #if defined(__EDG_VERSION__) && __EDG_VERSION__ <= 243 private: - BOOST_STATIC_CONSTANT(T, next_value = (N + 1)); - BOOST_STATIC_CONSTANT(T, prior_value = (N - 1)); + BOOST_STATIC_CONSTANT(int, next_value = (N + 1)); + BOOST_STATIC_CONSTANT(int, prior_value = (N - 1)); public: typedef int_c next; typedef int_c prior;