From: yangguo@chromium.org Date: Mon, 22 Aug 2011 13:01:25 +0000 (+0000) Subject: Added forgotten V8EXPORT attributes for v8::Array::CheckCast and v8::Number::CheckCast. X-Git-Tag: upstream/4.7.83~18671 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=891b0eb9193352c2c8b5ea15f164e74bfb7147cc;p=platform%2Fupstream%2Fv8.git Added forgotten V8EXPORT attributes for v8::Array::CheckCast and v8::Number::CheckCast. BUG=v8:1618 Review URL: http://codereview.chromium.org/7692020 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@8986 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/include/v8.h b/include/v8.h index e722d34e6..46e4f0db0 100644 --- a/include/v8.h +++ b/include/v8.h @@ -1335,7 +1335,7 @@ class Number : public Primitive { static inline Number* Cast(v8::Value* obj); private: V8EXPORT Number(); - static void CheckCast(v8::Value* obj); + V8EXPORT static void CheckCast(v8::Value* obj); }; @@ -1709,7 +1709,7 @@ class Array : public Object { static inline Array* Cast(Value* obj); private: V8EXPORT Array(); - static void CheckCast(Value* obj); + V8EXPORT static void CheckCast(Value* obj); };