File tree Expand file tree Collapse file tree 4 files changed +8
-1
lines changed Expand file tree Collapse file tree 4 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 3737
3838 # Reset this number to 0 on major V8 upgrades.
3939 # Increment by one for each non-official patch applied to deps/v8.
40- 'v8_embedder_string' : '-node.22 ' ,
40+ 'v8_embedder_string' : '-node.23 ' ,
4141
4242 ##### V8 defaults for Node.js #####
4343
Original file line number Diff line number Diff line change @@ -1603,6 +1603,10 @@ config("toolchain") {
16031603
16041604 # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108517
16051605 " -Wno-nonnull" ,
1606+
1607+ # Disable dangling pointer warnings, which are often false positives when
1608+ # using scopes.
1609+ " -Wno-dangling-pointer" ,
16061610 ]
16071611 }
16081612
Original file line number Diff line number Diff line change 66#define V8_COMPILER_TURBOSHAFT_ASSEMBLER_H_
77
88#include < cstring>
9+ #include < iomanip>
910#include < iterator>
1011#include < limits>
1112#include < memory>
Original file line number Diff line number Diff line change 44
55#include " src/wasm/wasm-disassembler.h"
66
7+ #include < iomanip>
8+
79#include " src/debug/debug-interface.h"
810#include " src/numbers/conversions.h"
911#include " src/wasm/module-decoder-impl.h"
You can’t perform that action at this time.
0 commit comments