summaryrefslogtreecommitdiff
path: root/deps/v8/src/wasm/wasm-limits.h
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/src/wasm/wasm-limits.h')
-rw-r--r--deps/v8/src/wasm/wasm-limits.h10
1 files changed, 3 insertions, 7 deletions
diff --git a/deps/v8/src/wasm/wasm-limits.h b/deps/v8/src/wasm/wasm-limits.h
index a083d606e0..5b82012159 100644
--- a/deps/v8/src/wasm/wasm-limits.h
+++ b/deps/v8/src/wasm/wasm-limits.h
@@ -16,9 +16,7 @@
#include "src/base/macros.h"
#include "src/wasm/wasm-constants.h"
-namespace v8 {
-namespace internal {
-namespace wasm {
+namespace v8::internal::wasm {
// These constants limit the amount of *declared* memory. At runtime, memory can
// only grow up to kV8MaxWasmMemory{32,64}Pages.
@@ -99,10 +97,8 @@ inline uint64_t max_mem64_bytes() {
}
V8_EXPORT_PRIVATE uint32_t max_table_init_entries();
-size_t max_module_size();
+V8_EXPORT_PRIVATE size_t max_module_size();
-} // namespace wasm
-} // namespace internal
-} // namespace v8
+} // namespace v8::internal::wasm
#endif // V8_WASM_WASM_LIMITS_H_