We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1122dcf commit 0bb2a1bCopy full SHA for 0bb2a1b
src/sage/libs/flint/flint_wrap.h
@@ -26,6 +26,10 @@
26
#pragma push_macro("ulong")
27
#undef ulong
28
29
+/* Reserved in C99, needed for FLINT without https://github.com/flintlib/flint/pull/2027 */
30
+#pragma push_macro("I")
31
+#define I Iv
32
+
33
#include <flint/flint.h>
34
35
/* If flint was already previously included via another header (e.g.
@@ -169,6 +173,7 @@
169
173
#undef mp_bitcnt_t
170
174
171
175
#pragma pop_macro("ulong")
176
+#pragma pop_macro("I")
172
177
178
/* CPU_SIZE_1 and SIZE_RED_FAILURE_THRESH are defined as macros in flint/fmpz_lll.h
179
* and as variables in fplll/defs.h, which breaks build if linbox is compiled with fplll */
0 commit comments