summaryrefslogtreecommitdiff
path: root/graphics/asymptote/fpu.h
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2020-08-07 03:02:55 +0000
committerNorbert Preining <norbert@preining.info>2020-08-07 03:02:55 +0000
commit3710c23789342d9d88783cbe9ad23eb5263a7c33 (patch)
tree1c40b2bfb9f6b652f7877ad0991f5d6b44391154 /graphics/asymptote/fpu.h
parentd99fea72e367e8d4d2809b43b3b0206b1bb526b8 (diff)
CTAN sync 202008070302
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;
}