Skip to content

Commit

Permalink
[hack] add missing includes
Browse files Browse the repository at this point in the history
  • Loading branch information
targos authored and nodejs-github-bot committed Sep 9, 2024
1 parent eb212ae commit 99299ac
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions deps/v8/src/wasm/wasm-code-pointer-table-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
#ifndef V8_WASM_WASM_CODE_POINTER_TABLE_INL_H_
#define V8_WASM_WASM_CODE_POINTER_TABLE_INL_H_

#include <atomic>

#include "src/common/code-memory-access-inl.h"
#include "src/common/segmented-table-inl.h"
#include "src/wasm/wasm-code-pointer-table.h"
Expand Down
3 changes: 3 additions & 0 deletions deps/v8/src/wasm/wasm-code-pointer-table.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

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

#include <algorithm>
#include <vector>

#include "src/sandbox/external-entity-table-inl.h"
#include "src/wasm/wasm-code-pointer-table-inl.h"

Expand Down
3 changes: 3 additions & 0 deletions deps/v8/src/wasm/wasm-code-pointer-table.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
#ifndef V8_WASM_WASM_CODE_POINTER_TABLE_H_
#define V8_WASM_WASM_CODE_POINTER_TABLE_H_

#include <atomic>
#include <vector>

#include "include/v8-internal.h"
#include "src/common/segmented-table.h"

Expand Down

0 comments on commit 99299ac

Please sign in to comment.