Title: [201259] trunk/Source/_javascript_Core
Revision
201259
Author
beid...@apple.com
Date
2016-05-22 15:21:38 -0700 (Sun, 22 May 2016)

Log Message

Attempted Yosemite build fix after http://trac.webkit.org/changeset/201255

Suggested by and reviewed by Anders Carlsson.

* b3/B3CCallValue.h: Initialize the effects member more conventionally.

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (201258 => 201259)


--- trunk/Source/_javascript_Core/ChangeLog	2016-05-22 22:19:33 UTC (rev 201258)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-05-22 22:21:38 UTC (rev 201259)
@@ -1,5 +1,13 @@
 2016-05-22  Brady Eidson  <beid...@apple.com>
 
+        Attempted Yosemite build fix after http://trac.webkit.org/changeset/201255
+
+        Suggested by and reviewed by Anders Carlsson.
+
+        * b3/B3CCallValue.h: Initialize the effects member more conventionally.
+
+2016-05-22  Brady Eidson  <beid...@apple.com>
+
         Move to C++14.
         https://bugs.webkit.org/show_bug.cgi?id=157948
 

Modified: trunk/Source/_javascript_Core/b3/B3CCallValue.h (201258 => 201259)


--- trunk/Source/_javascript_Core/b3/B3CCallValue.h	2016-05-22 22:19:33 UTC (rev 201258)
+++ trunk/Source/_javascript_Core/b3/B3CCallValue.h	2016-05-22 22:21:38 UTC (rev 201259)
@@ -39,7 +39,7 @@
 
     ~CCallValue();
 
-    Effects effects { Effects::forCall() };
+    Effects effects;
 
 protected:
     Value* cloneImpl() const override;
@@ -50,6 +50,7 @@
     template<typename... Arguments>
     CCallValue(Type type, Origin origin, Arguments... arguments)
         : Value(CheckedOpcode, CCall, type, origin, arguments...)
+        , effects(Effects::forCall())
     {
         RELEASE_ASSERT(numChildren() >= 1);
     }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to