Title: [97620] trunk/Source/_javascript_Core
- Revision
- 97620
- Author
- [email protected]
- Date
- 2011-10-17 07:21:10 -0700 (Mon, 17 Oct 2011)
Log Message
Windows build fix after r97536, part 3
* runtime/JSAPIValueWrapper.h:
* runtime/JSObject.h:
Use JS_EXPORTDATA to export the s_info members.
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (97619 => 97620)
--- trunk/Source/_javascript_Core/ChangeLog 2011-10-17 14:10:51 UTC (rev 97619)
+++ trunk/Source/_javascript_Core/ChangeLog 2011-10-17 14:21:10 UTC (rev 97620)
@@ -1,5 +1,13 @@
2011-10-17 Adam Roben <[email protected]>
+ Windows build fix after r97536, part 3
+
+ * runtime/JSAPIValueWrapper.h:
+ * runtime/JSObject.h:
+ Use JS_EXPORTDATA to export the s_info members.
+
+2011-10-17 Adam Roben <[email protected]>
+
Interpreter build fix after r97564
* runtime/Executable.cpp:
Modified: trunk/Source/_javascript_Core/runtime/JSAPIValueWrapper.h (97619 => 97620)
--- trunk/Source/_javascript_Core/runtime/JSAPIValueWrapper.h 2011-10-17 14:10:51 UTC (rev 97619)
+++ trunk/Source/_javascript_Core/runtime/JSAPIValueWrapper.h 2011-10-17 14:21:10 UTC (rev 97620)
@@ -42,7 +42,7 @@
return Structure::create(globalData, globalObject, prototype, TypeInfo(APIValueWrapperType, OverridesVisitChildren | OverridesGetPropertyNames), &s_info);
}
- static const ClassInfo s_info;
+ static JS_EXPORTDATA const ClassInfo s_info;
static JSAPIValueWrapper* create(ExecState* exec, JSValue value)
{
Modified: trunk/Source/_javascript_Core/runtime/JSObject.h (97619 => 97620)
--- trunk/Source/_javascript_Core/runtime/JSObject.h 2011-10-17 14:10:51 UTC (rev 97619)
+++ trunk/Source/_javascript_Core/runtime/JSObject.h 2011-10-17 14:21:10 UTC (rev 97620)
@@ -374,7 +374,7 @@
return Structure::create(globalData, globalObject, prototype, TypeInfo(FinalObjectType, StructureFlags), &s_info);
}
- static const ClassInfo s_info;
+ static JS_EXPORTDATA const ClassInfo s_info;
protected:
void finishCreation(JSGlobalData& globalData)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes