summaryrefslogtreecommitdiff
path: root/graphics/asymptote/fpu.h
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/asymptote/fpu.h')
-rw-r--r--graphics/asymptote/fpu.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/graphics/asymptote/fpu.h b/graphics/asymptote/fpu.h
index bf60a21dac..7ca8df0c34 100644
--- a/graphics/asymptote/fpu.h
+++ b/graphics/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;
}