diff options
Diffstat (limited to 'Build/source/utils/asymptote/fpu.h')
-rw-r--r-- | Build/source/utils/asymptote/fpu.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Build/source/utils/asymptote/fpu.h b/Build/source/utils/asymptote/fpu.h index bf60a21dacd..7ca8df0c344 100644 --- a/Build/source/utils/asymptote/fpu.h +++ b/Build/source/utils/asymptote/fpu.h @@ -13,15 +13,15 @@ inline int fpu_exceptions() { int excepts=0; -#ifdef FE_INVALID +#ifdef FE_INVALID excepts |= FE_INVALID; -#endif +#endif #ifdef FE_DIVBYZERO excepts |= FE_DIVBYZERO; -#endif +#endif #ifdef FE_OVERFLOW excepts |= FE_OVERFLOW; -#endif +#endif return excepts; } |