Title: [249580] trunk/Source/WebKit
Revision
249580
Author
achristen...@apple.com
Date
2019-09-06 11:02:02 -0700 (Fri, 06 Sep 2019)

Log Message

Fix unused argument warning from GCC.

* Platform/IPC/ArgumentCoders.h:
(IPC::TupleDecoder<0>::decode):
There was indeed an unused argument.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (249579 => 249580)


--- trunk/Source/WebKit/ChangeLog	2019-09-06 17:16:27 UTC (rev 249579)
+++ trunk/Source/WebKit/ChangeLog	2019-09-06 18:02:02 UTC (rev 249580)
@@ -1,5 +1,13 @@
 2019-09-06  Alex Christensen  <achristen...@webkit.org>
 
+        Fix unused argument warning from GCC.
+
+        * Platform/IPC/ArgumentCoders.h:
+        (IPC::TupleDecoder<0>::decode):
+        There was indeed an unused argument.
+
+2019-09-06  Alex Christensen  <achristen...@webkit.org>
+
         When disabling legacy private browsing for testing, change the SessionID back to what it was, not the defaultSessionID
         https://bugs.webkit.org/show_bug.cgi?id=201480
 

Modified: trunk/Source/WebKit/Platform/IPC/ArgumentCoders.h (249579 => 249580)


--- trunk/Source/WebKit/Platform/IPC/ArgumentCoders.h	2019-09-06 17:16:27 UTC (rev 249579)
+++ trunk/Source/WebKit/Platform/IPC/ArgumentCoders.h	2019-09-06 18:02:02 UTC (rev 249580)
@@ -227,7 +227,7 @@
 
 template<>
 struct TupleDecoder<0> {
-    static Optional<std::tuple<>> decode(Decoder& decoder)
+    static Optional<std::tuple<>> decode(Decoder&)
     {
         return std::make_tuple();
     }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to