id summary reporter owner description type status milestone component version severity resolution keywords cc 11189 float128 implementation of fma missing charles@… John Maddock "Compiling the following code (g++ 4.8.3 with -fext-numeric-literals) gives fmatest.cpp:9:16: error: ‘fma’ is not a member of ‘boost::math’ {{{ #include #include #include #include int main () { typedef boost::multiprecision::float128 real; real a = 10, b = 1/a, c = -1; std::cout << boost::math::fma(a, b, c) << "" "" << a * b + c << ""\n""; } }}} " Feature Requests closed Boost 1.63.0 multiprecision Boost 1.57.0 Problem fixed float128 cmath fma charles@…