Skip to content

Commit 6fe3c17

Browse files
committed
deps,v8: fix fragile windows include
1 parent 3cc8b41 commit 6fe3c17

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

deps/v8/include/v8-wasm-trap-handler-win.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#ifndef V8_WASM_TRAP_HANDLER_WIN_H_
66
#define V8_WASM_TRAP_HANDLER_WIN_H_
77

8-
#include <windows.h>
8+
#include "src/base/win32-headers.h"
99

1010
#include "v8config.h" // NOLINT(build/include)
1111

deps/v8/src/trap-handler/handler-inside-win.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
#include "src/trap-handler/handler-inside-win.h"
2727

28-
#include <windows.h>
28+
#include "src/base/win32-headers.h"
2929

3030
#include "src/trap-handler/trap-handler-internal.h"
3131
#include "src/trap-handler/trap-handler.h"

deps/v8/src/trap-handler/handler-inside-win.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#ifndef V8_TRAP_HANDLER_HANDLER_INSIDE_WIN_H_
66
#define V8_TRAP_HANDLER_HANDLER_INSIDE_WIN_H_
77

8-
#include <windows.h>
8+
#include "src/base/win32-headers.h"
99

1010
#include "src/base/macros.h"
1111

deps/v8/src/trap-handler/handler-outside-win.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
//
2020
// For the code that runs in the trap handler itself, see handler-inside.cc.
2121

22-
#include <windows.h>
22+
#include "src/base/win32-headers.h"
2323

2424
#include "src/trap-handler/handler-inside-win.h"
2525
#include "src/trap-handler/trap-handler.h"

0 commit comments

Comments
 (0)