mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-07-03 19:39:18 +00:00
std: Remove pragma "STDC FENV_ACCESS"
This pragma was ignored anyway
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user