diff options
author | raisinten <raisinten@gmail.com> | 2020-12-25 19:29:46 +0530 |
---|---|---|
committer | Node.js GitHub Bot <github-bot@iojs.org> | 2020-12-28 11:51:27 +0000 |
commit | d146b25928191cb4438ce5bf51ffce1856c1d171 (patch) | |
tree | 76c5f4118ea9a043384eb7eec07cd57ce8dee1d5 /tools | |
parent | c27efd4e6bf7ff569a8ee3636eac6efc93a79c3a (diff) | |
download | node-new-d146b25928191cb4438ce5bf51ffce1856c1d171.tar.gz |
build: fix unknown warning option
warning: unknown warning option '-Wno-int-in-bool-context';
did you mean '-Wno-gnu-include-next'? [-Wunknown-warning-option]
1 warning generated.
The `-Wint-in-bool-context` diagnostic is not enabled by default,
so no additional option is needed.
PR-URL: https://github.com/nodejs/node/pull/36629
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Michaƫl Zasso <targos@protonmail.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/v8_gypfiles/toolchain.gypi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/v8_gypfiles/toolchain.gypi b/tools/v8_gypfiles/toolchain.gypi index 1422c91ec4..0a11166a4d 100644 --- a/tools/v8_gypfiles/toolchain.gypi +++ b/tools/v8_gypfiles/toolchain.gypi @@ -138,7 +138,7 @@ 'cflags': [ '-Werror', '-Wno-unknown-pragmas' ], },{ 'cflags!': [ '-Wall', '-Wextra' ], - 'cflags': [ '-Wno-return-type', '-Wno-int-in-bool-context' ], + 'cflags': [ '-Wno-return-type' ], }], ['v8_target_arch=="arm"', { 'defines': [ |