From de299f5f3e65064d0303a4cd79d6f2aa16cc81b3 Mon Sep 17 00:00:00 2001 From: Fernando Cacciola Date: Thu, 23 Jun 2005 23:33:01 +0000 Subject: [PATCH] Old numeric_cast<> completely replaced by new code (except that the old code is retained as a fallback mechanism for old broken compilers that can't deal with the new code) [SVN r29761] --- include/boost/mpl/numeric_cast.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/include/boost/mpl/numeric_cast.hpp b/include/boost/mpl/numeric_cast.hpp index aaf3776..cb00f4f 100644 --- a/include/boost/mpl/numeric_cast.hpp +++ b/include/boost/mpl/numeric_cast.hpp @@ -4,8 +4,8 @@ // Copyright Aleksey Gurtovoy 2003-2004 // -// Distributed under the Boost Software License, Version 1.0. -// (See accompanying file LICENSE_1_0.txt or copy at +// Distributed under the Boost Software License, Version 1.0. +// (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // See http://www.boost.org/libs/mpl for documentation. @@ -17,11 +17,11 @@ #include #include -// agurt 21/sep/04: portability macro for the sake of MSVC 6.x-7.0; +// agurt 21/sep/04: portability macro for the sake of MSVC 6.x-7.0; // resolves conflicts with 'boost::numeric_cast' function template. -// use it in your own code _only_ if you care about compatibility with +// use it in your own code _only_ if you care about compatibility with // these outdated compilers! -#if BOOST_WORKAROUND(BOOST_MSVC, <= 1300) +#if BOOST_WORKAROUND(BOOST_MSVC, <= 1300) || BOOST_WORKAROUND(__BORLANDC__, <= 0x570) # define BOOST_MPL_AUX_NUMERIC_CAST numeric_cast_ #else # define BOOST_MPL_AUX_NUMERIC_CAST numeric_cast