This commit is contained in:
artemp 2016-01-20 11:21:04 +01:00
parent e874f9237b
commit d08b3d106b

View file

@ -91,7 +91,7 @@ struct abs_impl
{
value_type operator() (value_type const& val) const
{
return std::fabs(val.to_double());
return std::abs(val.to_double());
}
};