|
5 | 5 | #define WPR_DIAG_POP _Pragma("clang diagnostic pop") |
6 | 6 | #define WPR_IGNORE_DOUBLE_PROMOTION \ |
7 | 7 | _Pragma("clang diagnostic ignored \"-Wdouble-promotion\"") |
8 | | - #define WPR_IGNORE_IMPLICIT_INT \ |
| 8 | + #define WPR_IGNORE_IMPLICIT_INT \ |
9 | 9 | _Pragma("clang diagnostic ignored \"-Wimplicit-int\"") |
10 | 10 | #define WPR_IGNORE_CONVERSION \ |
11 | 11 | _Pragma("clang diagnostic ignored \"-Wconversion\"") |
|
18 | 18 | #define WPR_DIAG_POP _Pragma("GCC diagnostic pop") |
19 | 19 | #define WPR_IGNORE_DOUBLE_PROMOTION \ |
20 | 20 | _Pragma("GCC diagnostic ignored \"-Wdouble-promotion\"") |
21 | | - #define WPR_IGNORE_IMPLICIT_INT_FLOAT_CONV \ |
| 21 | + #define WPR_IGNORE_IMPLICIT_INT \ |
22 | 22 | _Pragma("GCC diagnostic ignored \"-Wimplicit-int\"") |
23 | 23 | #define WPR_IGNORE_CONVERSION \ |
24 | 24 | _Pragma("GCC diagnostic ignored \"-Wconversion\"") |
|
29 | 29 | #define WPR_DIAG_PUSH |
30 | 30 | #define WPR_DIAG_POP |
31 | 31 | #define WPR_IGNORE_DOUBLE_PROMOTION |
32 | | - #define WPR_IGNORE_IMPLICIT_INT_FLOAT_CONV |
| 32 | + #define WPR_IGNORE_IMPLICIT_INT |
33 | 33 | #define WPR_IGNORE_CONVERSION |
34 | 34 | #define WPR_IGNORE_STRICT_PROTOTYPES |
35 | 35 | #define WPR_IGNORE_PEDANTIC |
|
38 | 38 | #define BEGIN_IGNORE_WARNINGS \ |
39 | 39 | WPR_DIAG_PUSH \ |
40 | 40 | WPR_IGNORE_DOUBLE_PROMOTION \ |
41 | | - WPR_IGNORE_IMPLICIT_INT_FLOAT_CONV \ |
| 41 | + WPR_IGNORE_IMPLICIT_INT \ |
42 | 42 | WPR_IGNORE_CONVERSION \ |
43 | 43 | WPR_IGNORE_STRICT_PROTOTYPES \ |
44 | 44 | WPR_IGNORE_PEDANTIC |
|
0 commit comments