You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(math): Decouple USE_DETERMINISTIC_MATH from __has_include
Previously USE_DETERMINISTIC_MATH was defined inside the same
__has_include(gmath.h) guard, meaning TUs without gmath.h in their
include path would silently fall back to x87/CRT math.
Now define USE_DETERMINISTIC_MATH unconditionally for all non-VC6
compilers. If gmath.h is not available, the build will fail loudly
instead of silently using non-deterministic math.
0 commit comments