Title: [166330] trunk/Source/_javascript_Core
Revision
166330
Author
mark....@apple.com
Date
2014-03-26 17:50:43 -0700 (Wed, 26 Mar 2014)

Log Message

Build fix after r166307.

Not reviewed.

* runtime/JSCell.h:
- The inline function isAPIValueWrapper() should not be exported.  This
  was causing a linkage error when building for 32-bit x86 on Mac.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (166329 => 166330)


--- trunk/Source/_javascript_Core/ChangeLog	2014-03-26 23:58:15 UTC (rev 166329)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-03-27 00:50:43 UTC (rev 166330)
@@ -1,3 +1,13 @@
+2014-03-26  Mark Lam  <mark....@apple.com>
+
+        Build fix after r166307.
+
+        Not reviewed.
+
+        * runtime/JSCell.h:
+        - The inline function isAPIValueWrapper() should not be exported.  This
+          was causing a linkage error when building for 32-bit x86 on Mac.
+
 2014-03-26  Filip Pizlo  <fpi...@apple.com>
 
         Reasoning about DWARF register numbers should be moved out of FTL::Location

Modified: trunk/Source/_javascript_Core/runtime/JSCell.h (166329 => 166330)


--- trunk/Source/_javascript_Core/runtime/JSCell.h	2014-03-26 23:58:15 UTC (rev 166329)
+++ trunk/Source/_javascript_Core/runtime/JSCell.h	2014-03-27 00:50:43 UTC (rev 166330)
@@ -92,7 +92,7 @@
     bool isGetterSetter() const;
     bool isProxy() const;
     bool inherits(const ClassInfo*) const;
-    JS_EXPORT_PRIVATE bool isAPIValueWrapper() const;
+    bool isAPIValueWrapper() const;
 
     JSType type() const;
     IndexingType indexingType() const;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to