File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ const mp_digit ltm_prime_tab[] = {
44
44
#endif
45
45
};
46
46
47
- #if defined(__GNUC__ ) && ( __GNUC__ * 100 + __GNUC_MINOR__ >= 301 )
47
+ #if defined(__GNUC__ ) && __GNUC__ >= 4
48
48
#pragma GCC diagnostic push
49
49
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
50
50
const mp_digit * s_mp_prime_tab = ltm_prime_tab ;
Original file line number Diff line number Diff line change @@ -205,7 +205,7 @@ TOOM_SQR_CUTOFF;
205
205
# endif
206
206
#endif
207
207
208
- #if defined(__GNUC__ ) && ( __GNUC__ * 100 + __GNUC_MINOR__ >= 301 )
208
+ #if defined(__GNUC__ ) && __GNUC__ >= 4
209
209
# define MP_DEPRECATED (x ) __attribute__((deprecated("replaced by " #x)))
210
210
# define PRIVATE_MP_DEPRECATED_PRAGMA (s ) _Pragma(#s)
211
211
# define MP_DEPRECATED_PRAGMA (s ) PRIVATE_MP_DEPRECATED_PRAGMA(GCC warning s)
You can’t perform that action at this time.
0 commit comments