From d4e4f05b814054da95d3f47bf8fd2f900abd200c Mon Sep 17 00:00:00 2001 From: John Maddock Date: Tue, 24 Sep 2002 11:39:23 +0000 Subject: [PATCH] Borland bug check needs to check for version 0x570 [SVN r15492] --- include/boost/mpl/aux_/config/dtp.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/boost/mpl/aux_/config/dtp.hpp b/include/boost/mpl/aux_/config/dtp.hpp index ed2483d..8fd2328 100644 --- a/include/boost/mpl/aux_/config/dtp.hpp +++ b/include/boost/mpl/aux_/config/dtp.hpp @@ -22,8 +22,9 @@ // templates; Borland "forgets" them from the very beginning (if the owner // class is a class template). #if defined(__MWERKS__) && __MWERKS__ <= 0x3001 \ - || defined(__BORLANDC__) && __BORLANDC__ <= 0x560 + || defined(__BORLANDC__) && __BORLANDC__ <= 0x570 # define BOOST_NO_DEFAULT_TEMPLATE_PARAMETERS_IN_NESTED_TEMPLATES #endif #endif // BOOST_MPL_AUX_CONFIG_DTP_HPP_INCLUDED +