Title: [248294] trunk/Source/WTF
Revision
248294
Author
csaave...@igalia.com
Date
2019-08-06 08:01:53 -0700 (Tue, 06 Aug 2019)

Log Message

FileSystem: silent build warning

Unreviewed compilation warning fix.

Remove unused parameter in empty method
* wtf/FileSystem.cpp:
(WTF::FileSystemImpl::createTemporaryZipArchive):

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (248293 => 248294)


--- trunk/Source/WTF/ChangeLog	2019-08-06 14:59:26 UTC (rev 248293)
+++ trunk/Source/WTF/ChangeLog	2019-08-06 15:01:53 UTC (rev 248294)
@@ -1,3 +1,13 @@
+2019-08-06  Claudio Saavedra  <csaave...@igalia.com>
+
+        FileSystem: silent build warning
+
+        Unreviewed compilation warning fix.
+
+        Remove unused parameter in empty method
+        * wtf/FileSystem.cpp:
+        (WTF::FileSystemImpl::createTemporaryZipArchive):
+
 2019-08-05  Youenn Fablet  <you...@apple.com>
 
         Make Logger::log thread safe so that it can be used from background threads

Modified: trunk/Source/WTF/wtf/FileSystem.cpp (248293 => 248294)


--- trunk/Source/WTF/wtf/FileSystem.cpp	2019-08-06 14:59:26 UTC (rev 248293)
+++ trunk/Source/WTF/wtf/FileSystem.cpp	2019-08-06 15:01:53 UTC (rev 248294)
@@ -386,7 +386,7 @@
 #endif
 
 #if !PLATFORM(COCOA)
-String createTemporaryZipArchive(const String& directory)
+String createTemporaryZipArchive(const String&)
 {
     return { };
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to