Skip to content

Commit 9e85783

Browse files
author
webdevred
committed
tmpp
1 parent 4ed9342 commit 9e85783

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

include/wpc/macros.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#define WPR_DIAG_POP _Pragma("clang diagnostic pop")
66
#define WPR_IGNORE_DOUBLE_PROMOTION \
77
_Pragma("clang diagnostic ignored \"-Wdouble-promotion\"")
8-
#define WPR_IGNORE_IMPLICIT_INT \
8+
#define WPR_IGNORE_IMPLICIT_INT \
99
_Pragma("clang diagnostic ignored \"-Wimplicit-int\"")
1010
#define WPR_IGNORE_CONVERSION \
1111
_Pragma("clang diagnostic ignored \"-Wconversion\"")
@@ -18,7 +18,7 @@
1818
#define WPR_DIAG_POP _Pragma("GCC diagnostic pop")
1919
#define WPR_IGNORE_DOUBLE_PROMOTION \
2020
_Pragma("GCC diagnostic ignored \"-Wdouble-promotion\"")
21-
#define WPR_IGNORE_IMPLICIT_INT_FLOAT_CONV \
21+
#define WPR_IGNORE_IMPLICIT_INT \
2222
_Pragma("GCC diagnostic ignored \"-Wimplicit-int\"")
2323
#define WPR_IGNORE_CONVERSION \
2424
_Pragma("GCC diagnostic ignored \"-Wconversion\"")
@@ -29,7 +29,7 @@
2929
#define WPR_DIAG_PUSH
3030
#define WPR_DIAG_POP
3131
#define WPR_IGNORE_DOUBLE_PROMOTION
32-
#define WPR_IGNORE_IMPLICIT_INT_FLOAT_CONV
32+
#define WPR_IGNORE_IMPLICIT_INT
3333
#define WPR_IGNORE_CONVERSION
3434
#define WPR_IGNORE_STRICT_PROTOTYPES
3535
#define WPR_IGNORE_PEDANTIC
@@ -38,7 +38,7 @@
3838
#define BEGIN_IGNORE_WARNINGS \
3939
WPR_DIAG_PUSH \
4040
WPR_IGNORE_DOUBLE_PROMOTION \
41-
WPR_IGNORE_IMPLICIT_INT_FLOAT_CONV \
41+
WPR_IGNORE_IMPLICIT_INT \
4242
WPR_IGNORE_CONVERSION \
4343
WPR_IGNORE_STRICT_PROTOTYPES \
4444
WPR_IGNORE_PEDANTIC

0 commit comments

Comments
 (0)