File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 30
30
31
31
# Reset this number to 0 on major V8 upgrades.
32
32
# Increment by one for each non-official patch applied to deps/v8.
33
- 'v8_embedder_string' : '-node.8 ' ,
33
+ 'v8_embedder_string' : '-node.9 ' ,
34
34
35
35
# Enable disassembler for `--print-code` v8 options
36
36
'v8_enable_disassembler' : 1 ,
Original file line number Diff line number Diff line change 7
7
8
8
#include " src/base/debug/stack_trace.h"
9
9
10
+ // This file can't use "src/base/win32-headers.h" because it defines symbols
11
+ // that lead to compilation errors. But `NOMINMAX` should be defined to disable
12
+ // defining of the `min` and `max` MACROS.
13
+ #ifndef NOMINMAX
14
+ #define NOMINMAX
15
+ #endif
16
+
10
17
#include < windows.h>
11
18
#include < dbghelp.h>
12
19
#include < Shlwapi.h>
You can’t perform that action at this time.
0 commit comments