Skip to content

Commit 3d0e2ae

Browse files
targosnodejs-github-bot
authored andcommitted
[hack] add missing includes
1 parent aa0553c commit 3d0e2ae

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

deps/v8/src/wasm/wasm-code-pointer-table-inl.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
#ifndef V8_WASM_WASM_CODE_POINTER_TABLE_INL_H_
66
#define V8_WASM_WASM_CODE_POINTER_TABLE_INL_H_
77

8+
#include <atomic>
9+
810
#include "src/common/code-memory-access-inl.h"
911
#include "src/common/segmented-table-inl.h"
1012
#include "src/wasm/wasm-code-pointer-table.h"

deps/v8/src/wasm/wasm-code-pointer-table.cc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
#include "src/wasm/wasm-code-pointer-table.h"
66

7+
#include <algorithm>
8+
#include <vector>
9+
710
#include "src/sandbox/external-entity-table-inl.h"
811
#include "src/wasm/wasm-code-pointer-table-inl.h"
912

deps/v8/src/wasm/wasm-code-pointer-table.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
#ifndef V8_WASM_WASM_CODE_POINTER_TABLE_H_
66
#define V8_WASM_WASM_CODE_POINTER_TABLE_H_
77

8+
#include <atomic>
9+
#include <vector>
10+
811
#include "include/v8-internal.h"
912
#include "src/common/segmented-table.h"
1013

0 commit comments

Comments
 (0)