Commit 891b0eb9 authored by yangguo@chromium.org's avatar yangguo@chromium.org

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
parent 41426bde
......@@ -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);
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment