File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
sage_setup/autogen/flint/templates Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 3030#pragma push_macro("I")
3131#define I Iv
3232
33+ /* flint 3.2 will rename flint_rand_s to flint_rand_struct
34+ * the following line can be removed when flint 3.1 is gone */
35+ #define flint_rand_s flint_rand_struct
36+
3337#include <flint/flint.h>
3438
3539/* If flint was already previously included via another header (e.g.
Original file line number Diff line number Diff line change 3030#pragma push_macro("I")
3131#define I Iv
3232
33+ /* flint 3.2 will rename flint_rand_s to flint_rand_struct
34+ * the following line can be removed when flint 3.1 is gone */
35+ #define flint_rand_s flint_rand_struct
36+
3337#include <flint/flint.h>
3438
3539/* If flint was already previously included via another header (e.g.
Original file line number Diff line number Diff line change @@ -269,9 +269,9 @@ cdef extern from "flint_wrap.h":
269269
270270
271271 # flint/flint.h
272- ctypedef struct flint_rand_s :
272+ ctypedef struct flint_rand_struct :
273273 pass
274- ctypedef flint_rand_s flint_rand_t[1]
274+ ctypedef flint_rand_struct flint_rand_t[1]
275275 ctypedef enum flint_err_t:
276276 # flint_autogen.py does not support parsing .. enum:: yet
277277 FLINT_ERROR
You can’t perform that action at this time.
0 commit comments