Skip to content

Commit 0bb2a1b

Browse files
committed
src/sage/libs/flint/flint_wrap.h: Work around 'I' symbol clash
1 parent 1122dcf commit 0bb2a1b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/sage/libs/flint/flint_wrap.h

+5
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@
2626
#pragma push_macro("ulong")
2727
#undef ulong
2828

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+
2933
#include <flint/flint.h>
3034

3135
/* If flint was already previously included via another header (e.g.
@@ -169,6 +173,7 @@
169173
#undef mp_bitcnt_t
170174

171175
#pragma pop_macro("ulong")
176+
#pragma pop_macro("I")
172177

173178
/* CPU_SIZE_1 and SIZE_RED_FAILURE_THRESH are defined as macros in flint/fmpz_lll.h
174179
* and as variables in fplll/defs.h, which breaks build if linbox is compiled with fplll */

0 commit comments

Comments
 (0)