I'm using the boost multiprecision library, and more precisely the boost::multiprecision::float128 type. Using ICPC for compiling, I get some errors when trying to to do something like:
double a = functionA();
where functionA() return a boost::multiprecision::float128 variable.
error: no suitable conversion function from "boost::multiprecision::float128" to "double" exists|
How can I solve this?