Skip to content

Commit abdc319

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

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: include/ada/common_defs.h

+2-1
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)