Title: [207213] trunk/Source/_javascript_Core
Revision
207213
Author
o...@webkit.org
Date
2016-10-12 02:54:14 -0700 (Wed, 12 Oct 2016)

Log Message

Unreviewed buildfix for GCC 4.9 after r207186.
https://bugs.webkit.org/show_bug.cgi?id=163255

* runtime/HasOwnPropertyCache.h:
(JSC::HasOwnPropertyCache::Entry::Entry):

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (207212 => 207213)


--- trunk/Source/_javascript_Core/ChangeLog	2016-10-12 08:41:58 UTC (rev 207212)
+++ trunk/Source/_javascript_Core/ChangeLog	2016-10-12 09:54:14 UTC (rev 207213)
@@ -1,3 +1,11 @@
+2016-10-12  Csaba Osztrogonác  <o...@webkit.org>
+
+        Unreviewed buildfix for GCC 4.9 after r207186.
+        https://bugs.webkit.org/show_bug.cgi?id=163255
+
+        * runtime/HasOwnPropertyCache.h:
+        (JSC::HasOwnPropertyCache::Entry::Entry):
+
 2016-10-11  Saam Barati  <sbar...@apple.com>
 
         HasOwnPropertyCache needs to ref the UniquedStringImpls it sees

Modified: trunk/Source/_javascript_Core/runtime/HasOwnPropertyCache.h (207212 => 207213)


--- trunk/Source/_javascript_Core/runtime/HasOwnPropertyCache.h	2016-10-12 08:41:58 UTC (rev 207212)
+++ trunk/Source/_javascript_Core/runtime/HasOwnPropertyCache.h	2016-10-12 09:54:14 UTC (rev 207213)
@@ -44,6 +44,13 @@
 
         Entry() = default;
 
+        Entry(RefPtr<UniquedStringImpl> impl, StructureID structureID, bool result)
+            : impl(impl)
+            , structureID(structureID)
+            , result(result)
+        {
+        }
+
         Entry& operator=(Entry&& other)
         {
             impl = WTFMove(other.impl);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to