diff options
Diffstat (limited to 'deps/v8/src/handles/handles.h')
-rw-r--r-- | deps/v8/src/handles/handles.h | 8 |
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); |