2
0
mirror of https://github.com/boostorg/math.git synced 2026-01-28 07:22:12 +00:00

Fix constexp usage.

[SVN r78133]
This commit is contained in:
John Maddock
2012-04-22 11:17:08 +00:00
parent ec742b4b80
commit 73bd07a44d

View File

@@ -29,7 +29,7 @@ inline T make_big_value(long double, const char* s, mpl::false_ const&, mpl::fal
return boost::lexical_cast<T>(s);
}
template <class T>
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;
}