Title: [239020] trunk/Source/WTF
Revision
239020
Author
yusukesuz...@slowstart.org
Date
2018-12-09 08:09:07 -0800 (Sun, 09 Dec 2018)

Log Message

Unreviewed, fix build failure on GCC 8.2

We remove operator=<PtrTraits> call since it is not necessary.
This is a workaround. It seems that GCC 8.2 fails to parse this specialization.

* wtf/RefCountedArray.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (239019 => 239020)


--- trunk/Source/WTF/ChangeLog	2018-12-09 09:05:45 UTC (rev 239019)
+++ trunk/Source/WTF/ChangeLog	2018-12-09 16:09:07 UTC (rev 239020)
@@ -1,3 +1,12 @@
+2018-12-09  Yusuke Suzuki  <yusukesuz...@slowstart.org>
+
+        Unreviewed, fix build failure on GCC 8.2
+
+        We remove operator=<PtrTraits> call since it is not necessary.
+        This is a workaround. It seems that GCC 8.2 fails to parse this specialization.
+
+        * wtf/RefCountedArray.h:
+
 2018-12-08  Darin Adler  <da...@apple.com>
 
         Fix stray-semicolon warning seen with a new version of clang in Xcode

Modified: trunk/Source/WTF/wtf/RefCountedArray.h (239019 => 239020)


--- trunk/Source/WTF/wtf/RefCountedArray.h	2018-12-09 09:05:45 UTC (rev 239019)
+++ trunk/Source/WTF/wtf/RefCountedArray.h	2018-12-09 16:09:07 UTC (rev 239020)
@@ -120,8 +120,6 @@
         return *this;
     }
 
-    RefCountedArray& operator=(const RefCountedArray& other) { return this->operator=<PtrTraits>(other); }
-
     ~RefCountedArray()
     {
         if (!m_data)
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to