File tree 4 files changed +8
-1
lines changed
4 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 37
37
38
38
# Reset this number to 0 on major V8 upgrades.
39
39
# Increment by one for each non-official patch applied to deps/v8.
40
- 'v8_embedder_string' : '-node.22 ' ,
40
+ 'v8_embedder_string' : '-node.23 ' ,
41
41
42
42
##### V8 defaults for Node.js #####
43
43
Original file line number Diff line number Diff line change @@ -1603,6 +1603,10 @@ config("toolchain") {
1603
1603
1604
1604
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108517
1605
1605
" -Wno-nonnull" ,
1606
+
1607
+ # Disable dangling pointer warnings, which are often false positives when
1608
+ # using scopes.
1609
+ " -Wno-dangling-pointer" ,
1606
1610
]
1607
1611
}
1608
1612
Original file line number Diff line number Diff line change 6
6
#define V8_COMPILER_TURBOSHAFT_ASSEMBLER_H_
7
7
8
8
#include < cstring>
9
+ #include < iomanip>
9
10
#include < iterator>
10
11
#include < limits>
11
12
#include < memory>
Original file line number Diff line number Diff line change 4
4
5
5
#include " src/wasm/wasm-disassembler.h"
6
6
7
+ #include < iomanip>
8
+
7
9
#include " src/debug/debug-interface.h"
8
10
#include " src/numbers/conversions.h"
9
11
#include " src/wasm/module-decoder-impl.h"
You can’t perform that action at this time.
0 commit comments