diff options
Diffstat (limited to 'deps/v8/include/v8.h')
-rw-r--r-- | deps/v8/include/v8.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/v8/include/v8.h b/deps/v8/include/v8.h index 2789bad216..24dc6d13f7 100644 --- a/deps/v8/include/v8.h +++ b/deps/v8/include/v8.h @@ -2725,9 +2725,9 @@ class Internals { // These constants are compiler dependent so their values must be // defined within the implementation. - static int kJSObjectType; - static int kFirstNonstringType; - static int kProxyType; + V8EXPORT static int kJSObjectType; + V8EXPORT static int kFirstNonstringType; + V8EXPORT static int kProxyType; static inline bool HasHeapObjectTag(internal::Object* value) { return ((reinterpret_cast<intptr_t>(value) & kHeapObjectTagMask) == |