Skip to content

Commit a2c4552

Browse files
committed
enable -Wsign-compare to comply with node.js builds
1 parent 875f633 commit a2c4552

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/ada/common_defs.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@
9999
ADA_DISABLE_GCC_WARNING("-Wreturn-type") \
100100
ADA_DISABLE_GCC_WARNING("-Wshadow") \
101101
ADA_DISABLE_GCC_WARNING("-Wunused-parameter") \
102-
ADA_DISABLE_GCC_WARNING("-Wunused-variable")
102+
ADA_DISABLE_GCC_WARNING("-Wunused-variable") \
103+
ADA_DISABLE_GCC_WARNING("-Wsign-compare")
103104
#define ADA_PRAGMA(P) _Pragma(#P)
104105
#define ADA_DISABLE_GCC_WARNING(WARNING) \
105106
ADA_PRAGMA(GCC diagnostic ignored WARNING)

0 commit comments

Comments
 (0)