Title: [171843] trunk/Source/_javascript_Core
- Revision
- 171843
- Author
- [email protected]
- Date
- 2014-07-30 23:51:47 -0700 (Wed, 30 Jul 2014)
Log Message
Speculative Windows build fix.
Try to dllimport the dllexported global object HashTable.
* jsc.cpp:
* testRegExp.cpp:
Modified Paths
Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (171842 => 171843)
--- trunk/Source/_javascript_Core/ChangeLog 2014-07-31 06:17:13 UTC (rev 171842)
+++ trunk/Source/_javascript_Core/ChangeLog 2014-07-31 06:51:47 UTC (rev 171843)
@@ -1,5 +1,14 @@
2014-07-30 Andreas Kling <[email protected]>
+ Speculative Windows build fix.
+
+ Try to dllimport the dllexported global object HashTable.
+
+ * jsc.cpp:
+ * testRegExp.cpp:
+
+2014-07-30 Andreas Kling <[email protected]>
+
PropertyName's internal string is always atomic.
<https://webkit.org/b/135451>
Modified: trunk/Source/_javascript_Core/jsc.cpp (171842 => 171843)
--- trunk/Source/_javascript_Core/jsc.cpp 2014-07-31 06:17:13 UTC (rev 171842)
+++ trunk/Source/_javascript_Core/jsc.cpp 2014-07-31 06:51:47 UTC (rev 171843)
@@ -95,7 +95,7 @@
using namespace WTF;
namespace JSC {
-extern const struct HashTable globalObjectTable;
+WTF_IMPORT extern const struct HashTable globalObjectTable;
}
namespace {
Modified: trunk/Source/_javascript_Core/testRegExp.cpp (171842 => 171843)
--- trunk/Source/_javascript_Core/testRegExp.cpp 2014-07-31 06:17:13 UTC (rev 171842)
+++ trunk/Source/_javascript_Core/testRegExp.cpp 2014-07-31 06:51:47 UTC (rev 171843)
@@ -46,7 +46,7 @@
#endif
namespace JSC {
-extern const struct HashTable globalObjectTable;
+WTF_IMPORT extern const struct HashTable globalObjectTable;
}
const int MaxLineLength = 100 * 1024;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes