From beca151fa6b33ec3979c61df70193b7c2d709f43 Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Tue, 15 Oct 2024 04:05:07 +0300 Subject: [PATCH] std: Remove pragma "STDC FENV_ACCESS" This pragma was ignored anyway --- include_std/cmath | 1 - 1 file changed, 1 deletion(-) 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;