diff --git a/include_std/cmath b/include_std/cmath index 29e243f..fd7a417 100644 --- a/include_std/cmath +++ b/include_std/cmath @@ -131,7 +131,6 @@ namespace std template constexpr double fmod(Integer x, Integer y) { -#pragma STDC FENV_ACCESS ON double result = std::remainder(std::fabs(x), y = std::fabs(y)); if (std::signbit(result)) result += (double)y;