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.10 ' ,
40
+ 'v8_embedder_string' : '-node.11 ' ,
41
41
42
42
##### V8 defaults for Node.js #####
43
43
Original file line number Diff line number Diff line change @@ -1716,6 +1716,10 @@ config("toolchain") {
1716
1716
1717
1717
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108517
1718
1718
" -Wno-nonnull" ,
1719
+
1720
+ # Disable dangling pointer warnings, which are often false positives when
1721
+ # using scopes.
1722
+ " -Wno-dangling-pointer" ,
1719
1723
]
1720
1724
}
1721
1725
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