From 73bd07a44d627bbb07d63899e388bdae46ddee73 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Sun, 22 Apr 2012 11:17:08 +0000 Subject: [PATCH] Fix constexp usage. [SVN r78133] --- 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 6be5b6aa3..aa89666e9 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 BOOST_CONSTEXPR_OR_CONST char* make_big_value(long double, const char* s, mpl::false_ const&, mpl::true_ const&) +inline const char* BOOST_CONSTEXPR_OR_CONST make_big_value(long double, const char* s, mpl::false_ const&, mpl::true_ const&) { return s; }