|
Boost-Commit : |
From: tschwinger_at_[hidden]
Date: 2008-01-18 15:52:06
Author: t_schwinger
Date: 2008-01-18 15:52:06 EST (Fri, 18 Jan 2008)
New Revision: 42858
URL: http://svn.boost.org/trac/boost/changeset/42858
Log:
attempts to fix BCB 5.9 regression in synthesis/mem_func_ptr_cv_ptr_to_this test
Text files modified:
trunk/boost/function_types/detail/cv_traits.hpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: trunk/boost/function_types/detail/cv_traits.hpp
==============================================================================
--- trunk/boost/function_types/detail/cv_traits.hpp (original)
+++ trunk/boost/function_types/detail/cv_traits.hpp 2008-01-18 15:52:06 EST (Fri, 18 Jan 2008)
@@ -12,7 +12,7 @@
#include <cstddef>
#include <boost/detail/workaround.hpp>
-#if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) || BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
+#if defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) || BOOST_WORKAROUND(__BORLANDC__, <= 0x582)
# include <boost/type_traits/remove_cv.hpp>
# include <boost/type_traits/remove_pointer.hpp>
# include <boost/type_traits/remove_reference.hpp>
@@ -25,7 +25,7 @@
namespace ft = boost::function_types;
-#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
+#if !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION) && !BOOST_WORKAROUND(__BORLANDC__, <= 0x582)
template<typename T> struct cv_traits
{ typedef non_cv tag; typedef T type; };
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk