Title: [205016] trunk/Tools
Revision
205016
Author
pvol...@apple.com
Date
2016-08-26 09:35:26 -0700 (Fri, 26 Aug 2016)

Log Message

[Win] Warning fix.
https://bugs.webkit.org/show_bug.cgi?id=161236

Reviewed by Brent Fulgham.

The & operator in the Test struct has no body.

* TestWebKitAPI/Tests/WTF/Vector.cpp:
(TestWebKitAPI::TEST):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (205015 => 205016)


--- trunk/Tools/ChangeLog	2016-08-26 16:33:03 UTC (rev 205015)
+++ trunk/Tools/ChangeLog	2016-08-26 16:35:26 UTC (rev 205016)
@@ -1,3 +1,15 @@
+2016-08-26  Per Arne Vollan  <pvol...@apple.com>
+
+        [Win] Warning fix.
+        https://bugs.webkit.org/show_bug.cgi?id=161236
+
+        Reviewed by Brent Fulgham.
+
+        The & operator in the Test struct has no body.
+
+        * TestWebKitAPI/Tests/WTF/Vector.cpp:
+        (TestWebKitAPI::TEST):
+
 2016-08-26  Carlos Alberto Lopez Perez  <clo...@igalia.com>
 
         [GTK] run-gtk-tests should use webkitpy.port.gtk and webkitpy.port.xvfbdriver

Modified: trunk/Tools/TestWebKitAPI/Tests/WTF/Vector.cpp (205015 => 205016)


--- trunk/Tools/TestWebKitAPI/Tests/WTF/Vector.cpp	2016-08-26 16:33:03 UTC (rev 205015)
+++ trunk/Tools/TestWebKitAPI/Tests/WTF/Vector.cpp	2016-08-26 16:35:26 UTC (rev 205016)
@@ -67,7 +67,7 @@
 {
     struct Test {
     private:
-        Test* operator&();
+        Test* operator&() = delete;
     };
 
     Vector<Test> vector;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to