build,win: silence MSVC warning C4129 for V8 · nodejs/node@b64b223 (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Commit b64b223
authored and
committed
build,win: silence MSVC warning C4129 for V8
Currently we get 13,799 of those per build PR-URL: #27017Reviewed-By: Richard Lau riclau@uk.ibm.com Reviewed-By: Colin Ihrig cjihrig@gmail.com Reviewed-By: Ruben Bridgewater ruben@bridgewater.de Signed-off-by: Beth Griggs Bethany.Griggs@uk.ibm.com
File tree
1 file changed
lines changed
1 file changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1395,6 +1395,7 @@ | ||
1395 | 1395 | }, # configurations |
1396 | 1396 | 'cflags': [ '-Wno-type-limits', ], |
1397 | 1397 | 'msvs_disabled_warnings': [ |
1398 | +4129, # unrecognized character escape sequence (torque-generated) | |
1398 | 1399 | 4245, # Conversion with signed/unsigned mismatch. |
1399 | 1400 | 4267, # Conversion with possible loss of data. |
1400 | 1401 | 4324, # Padding structure due to alignment. |