Commit aadfc39a authored by ulan@chromium.org's avatar ulan@chromium.org

Fix Windows shared library build.

We cannot dll-export templates.

R=jkummerow@chromium.org

Review URL: https://chromiumcodereview.appspot.com/15697006

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@14751 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 3512dd3b
......@@ -2735,7 +2735,7 @@ class V8EXPORT Template : public Data {
template<typename T>
class V8EXPORT ReturnValue {
class ReturnValue {
public:
V8_INLINE(explicit ReturnValue(internal::Object** slot));
// Handle setters
......@@ -2763,7 +2763,7 @@ class V8EXPORT ReturnValue {
* the holder of the function.
*/
template<typename T>
class V8EXPORT FunctionCallbackInfo {
class FunctionCallbackInfo {
public:
V8_INLINE(int Length() const);
V8_INLINE(Local<Value> operator[](int i) const);
......@@ -2811,7 +2811,7 @@ class V8EXPORT Arguments : public FunctionCallbackInfo<Value> {
* of the property access.
*/
template<typename T>
class V8EXPORT PropertyCallbackInfo {
class PropertyCallbackInfo {
public:
V8_INLINE(Isolate* GetIsolate() const);
V8_INLINE(Local<Value> Data() const);
......
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