std: Remove pragma "STDC FENV_ACCESS"

This pragma was ignored anyway
This commit is contained in:
EnderIce2 2024-10-15 04:05:07 +03:00
parent d23ab8f476
commit beca151fa6
Signed by untrusted user who does not match committer: enderice2
GPG Key ID: EACC3AD603BAB4DD

View File

@ -131,7 +131,6 @@ namespace std
template <class Integer>
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;