From b0379774af46891c8d8b49c638cc98bb693c1f90 Mon Sep 17 00:00:00 2001 From: Dave Abrahams Date: Wed, 18 Sep 2002 00:48:16 +0000 Subject: [PATCH] Adjust EDG workaround version [SVN r15425] --- include/boost/mpl/aux_/typeof.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/mpl/aux_/typeof.hpp b/include/boost/mpl/aux_/typeof.hpp index 0ab9a6a..c318d65 100644 --- a/include/boost/mpl/aux_/typeof.hpp +++ b/include/boost/mpl/aux_/typeof.hpp @@ -19,7 +19,7 @@ #if defined(__BORLANDC__) # define BOOST_MPL_AUX_TYPEOF(T,x) typename T::value_type -#elif defined(__MWERKS__) || defined(BOOST_MSVC) && BOOST_MSVC <= 1300 || defined(__EDG_VERSION__) && __EDG_VERSION__ <= 241 +#elif defined(__MWERKS__) || defined(BOOST_MSVC) && BOOST_MSVC <= 1300 || defined(__EDG_VERSION__) && __EDG_VERSION__ <= 243 # define BOOST_MPL_AUX_TYPEOF(T,x) long #elif defined(__GCC__) # define BOOST_MPL_AUX_TYPEOF(T,x) __typeof__(x)