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

Yet another try at getting constexp usage correct!

Refs #6820.

[SVN r78160]
This commit is contained in:
John Maddock
2012-04-23 15:13:10 +00:00
parent fe318046c6
commit e1fc40cf11

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 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;
}