Uh oh!
There was an error while loading. Please reload this page.
src: use CHECK(false) in switch default case - #26502
Conversation
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
nitsakh
commented
Mar 8, 2019
Thanks! I just updated the branch as per @bnoordhuis 's suggestion. Please let me know if this approach works. |
Maybe the build is failing on gcc4.9 due to https://github.com/nodejs/node/blob/master/src/node_file.h#L151-L156 ? 🤔 |
Uh oh!
There was an error while loading. Please reload this page.
danbev
commented
Mar 14, 2019
|
danbev
commented
Mar 15, 2019
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
nitsakh
commented
Mar 20, 2019
@bnoordhuis, it'll be great if you can please take a quick look at the changes. |
nitsakh
commented
Apr 17, 2019
Please let me know if there's something blocking here. Happy to make needed changes. :-) |
nodejs-github-bot
commented
Apr 17, 2019
nodejs-github-bot
commented
Apr 17, 2019
nodejs-github-bot
commented
Apr 29, 2019
nodejs-github-bot
commented
Apr 30, 2019
ryzokuken
commented
May 13, 2019
1 similar comment
nodejs-github-bot
commented
May 13, 2019
nodejs-github-bot
commented
May 19, 2019
nodejs-github-bot
commented
May 19, 2019
addaleax
commented
May 19, 2019
Sorry this took so long! Landed in 00ba75e 🎉 |
PR-URL: #26502 Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com>
PR-URL: #26502 Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com>
Passing a !string to
CHECKwill trigger a string conversion warning and it's also inconsistent with the usage in other places. Hence, this changes it toCHECK(false)making it consistent.Checklist
make -j4 test(UNIX), orvcbuild test(Windows) passes