From e1fc40cf110c80fcadac14f34a33c465e4e8efbe Mon Sep 17 00:00:00 2001 From: John Maddock Date: Mon, 23 Apr 2012 15:13:10 +0000 Subject: [PATCH] Yet another try at getting constexp usage correct! Refs #6820. [SVN r78160] --- include/boost/math/tools/big_constant.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/math/tools/big_constant.hpp b/include/boost/math/tools/big_constant.hpp index aa89666e9..56abe2fd9 100644 --- a/include/boost/math/tools/big_constant.hpp +++ b/include/boost/math/tools/big_constant.hpp @@ -29,7 +29,7 @@ inline T make_big_value(long double, const char* s, mpl::false_ const&, mpl::fal return boost::lexical_cast(s); } template -inline const char* BOOST_CONSTEXPR_OR_CONST make_big_value(long double, const char* s, mpl::false_ const&, mpl::true_ const&) +inline BOOST_CONSTEXPR const char* make_big_value(long double, const char* s, mpl::false_ const&, mpl::true_ const&) { return s; }