Title: [205936] trunk/Source/_javascript_Core
Revision
205936
Author
[email protected]
Date
2016-09-14 16:15:46 -0700 (Wed, 14 Sep 2016)

Log Message

Unreviewed, fix the Windows build.

* runtime/HashMapImpl.cpp:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (205935 => 205936)


--- trunk/Source/_javascript_Core/ChangeLog	2016-09-14 23:11:49 UTC (rev 205935)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-09-14 23:15:46 UTC (rev 205936)
@@ -1,5 +1,11 @@
 2016-09-14  Keith Miller  <[email protected]>
 
+        Unreviewed, fix the Windows build.
+
+        * runtime/HashMapImpl.cpp:
+
+2016-09-14  Keith Miller  <[email protected]>
+
         Pragma out undefined-var-template warnings in JSC for JSObjects that are templatized
         https://bugs.webkit.org/show_bug.cgi?id=161985
 

Modified: trunk/Source/_javascript_Core/runtime/HashMapImpl.cpp (205935 => 205936)


--- trunk/Source/_javascript_Core/runtime/HashMapImpl.cpp	2016-09-14 23:11:49 UTC (rev 205935)
+++ trunk/Source/_javascript_Core/runtime/HashMapImpl.cpp	2016-09-14 23:15:46 UTC (rev 205936)
@@ -31,11 +31,11 @@
 namespace JSC {
 
 template<>
-const JS_EXPORTDATA ClassInfo HashMapBucket<HashMapBucketDataKey>::s_info =
+const ClassInfo HashMapBucket<HashMapBucketDataKey>::s_info =
     { "HashMapBucket", nullptr, 0, CREATE_METHOD_TABLE(HashMapBucket<HashMapBucketDataKey>) };
 
 template<>
-const JS_EXPORTDATA ClassInfo HashMapBucket<HashMapBucketDataKeyValue>::s_info =
+const ClassInfo HashMapBucket<HashMapBucketDataKeyValue>::s_info =
     { "HashMapBucket", nullptr, 0, CREATE_METHOD_TABLE(HashMapBucket<HashMapBucketDataKeyValue>) };
 
 template <typename Data>
@@ -53,11 +53,11 @@
 }
 
 template<>
-const JS_EXPORTDATA ClassInfo HashMapImpl<HashMapBucket<HashMapBucketDataKey>>::s_info =
+const ClassInfo HashMapImpl<HashMapBucket<HashMapBucketDataKey>>::s_info =
     { "HashMapImpl", nullptr, 0, CREATE_METHOD_TABLE(HashMapImpl<HashMapBucket<HashMapBucketDataKey>>) };
 
 template<>
-const JS_EXPORTDATA ClassInfo HashMapImpl<HashMapBucket<HashMapBucketDataKeyValue>>::s_info =
+const ClassInfo HashMapImpl<HashMapBucket<HashMapBucketDataKeyValue>>::s_info =
     { "HashMapImpl", nullptr, 0, CREATE_METHOD_TABLE(HashMapImpl<HashMapBucket<HashMapBucketDataKeyValue>>) };
 
 template <typename HashMapBucket>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to