summaryrefslogtreecommitdiff
path: root/deps/v8/src/handles/handles.h
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2022-01-29 08:33:07 +0100
committerMichaël Zasso <targos@protonmail.com>2022-02-02 17:23:18 +0100
commit974ab4060fe3eff74dc0a62a5a27d516738f4c55 (patch)
tree30fbcca796ca5cc7b4abf917e716e2b02899cb7a /deps/v8/src/handles/handles.h
parent4318b2348dbcd5003e0c4a14b5fe378cceec3c81 (diff)
downloadnode-new-974ab4060fe3eff74dc0a62a5a27d516738f4c55.tar.gz
deps: update V8 to 9.8.177.9
PR-URL: https://github.com/nodejs/node/pull/41610 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'deps/v8/src/handles/handles.h')
-rw-r--r--deps/v8/src/handles/handles.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/deps/v8/src/handles/handles.h b/deps/v8/src/handles/handles.h
index 166b7ee4ab..3bde90f81f 100644
--- a/deps/v8/src/handles/handles.h
+++ b/deps/v8/src/handles/handles.h
@@ -199,7 +199,7 @@ inline std::ostream& operator<<(std::ostream& os, Handle<T> handle);
// for which the handle scope has been deleted is undefined.
class V8_NODISCARD HandleScope {
public:
- explicit inline HandleScope(Isolate* isolate);
+ explicit V8_INLINE HandleScope(Isolate* isolate);
inline HandleScope(HandleScope&& other) V8_NOEXCEPT;
HandleScope(const HandleScope&) = delete;
HandleScope& operator=(const HandleScope&) = delete;
@@ -213,7 +213,7 @@ class V8_NODISCARD HandleScope {
void* operator new(size_t size) = delete;
void operator delete(void* size_t) = delete;
- inline ~HandleScope();
+ V8_INLINE ~HandleScope();
inline HandleScope& operator=(HandleScope&& other) V8_NOEXCEPT;
@@ -253,8 +253,8 @@ class V8_NODISCARD HandleScope {
Address* prev_limit_;
// Close the handle scope resetting limits to a previous state.
- static inline void CloseScope(Isolate* isolate, Address* prev_next,
- Address* prev_limit);
+ static V8_INLINE void CloseScope(Isolate* isolate, Address* prev_next,
+ Address* prev_limit);
// Extend the handle scope making room for more handles.
V8_EXPORT_PRIVATE static Address* Extend(Isolate* isolate);