Title: [172137] trunk/Source/_javascript_Core
Revision
172137
Author
o...@webkit.org
Date
2014-08-05 23:53:10 -0700 (Tue, 05 Aug 2014)

Log Message

URTBF after r172129. (ftlopt branch merge)

Remove the duplicated friend declaration to fix this build failure:
"error: ‘JSC::Structure’ is already a friend of ‘JSC::StructureRareData’ [-Werror]"

* runtime/StructureRareData.h:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (172136 => 172137)


--- trunk/Source/_javascript_Core/ChangeLog	2014-08-06 06:21:03 UTC (rev 172136)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-08-06 06:53:10 UTC (rev 172137)
@@ -1,3 +1,12 @@
+2014-08-05  Csaba Osztrogonác  <o...@webkit.org>
+
+        URTBF after r172129. (ftlopt branch merge)
+
+        Remove the duplicated friend declaration to fix this build failure:
+        "error: ‘JSC::Structure’ is already a friend of ‘JSC::StructureRareData’ [-Werror]"
+
+        * runtime/StructureRareData.h:
+
 2014-08-05  Filip Pizlo  <fpi...@apple.com>
 
         Attempt to fix CMake-based builds, part 3.

Modified: trunk/Source/_javascript_Core/runtime/StructureRareData.h (172136 => 172137)


--- trunk/Source/_javascript_Core/runtime/StructureRareData.h	2014-08-06 06:21:03 UTC (rev 172136)
+++ trunk/Source/_javascript_Core/runtime/StructureRareData.h	2014-08-06 06:53:10 UTC (rev 172137)
@@ -37,7 +37,6 @@
 class Structure;
 
 class StructureRareData : public JSCell {
-    friend class Structure;
 public:
     static StructureRareData* create(VM&, Structure*);
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to