Title: [268172] trunk/Source/WebKit
Revision
268172
Author
[email protected]
Date
2020-10-07 22:26:51 -0700 (Wed, 07 Oct 2020)

Log Message

Unreviewed. Remove the build warning below since r238330.
warning: unused variable ‘connectionIdentifier’ [-Wunused-variable]

No new tests, no new behaviors.

* WebProcess/Inspector/WebInspectorUI.cpp:
(WebKit::WebInspectorUI::updateConnection):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (268171 => 268172)


--- trunk/Source/WebKit/ChangeLog	2020-10-08 04:56:46 UTC (rev 268171)
+++ trunk/Source/WebKit/ChangeLog	2020-10-08 05:26:51 UTC (rev 268172)
@@ -1,3 +1,13 @@
+2020-10-07  Joonghun Park  <[email protected]>
+
+        Unreviewed. Remove the build warning below since r238330.
+        warning: unused variable ‘connectionIdentifier’ [-Wunused-variable]
+
+        No new tests, no new behaviors.
+
+        * WebProcess/Inspector/WebInspectorUI.cpp:
+        (WebKit::WebInspectorUI::updateConnection):
+
 2020-10-07  Keith Rollin  <[email protected]>
 
         Update post-processing rules for headers to not unnecessarily change timestamps

Modified: trunk/Source/WebKit/WebProcess/Inspector/WebInspectorUI.cpp (268171 => 268172)


--- trunk/Source/WebKit/WebProcess/Inspector/WebInspectorUI.cpp	2020-10-08 04:56:46 UTC (rev 268171)
+++ trunk/Source/WebKit/WebProcess/Inspector/WebInspectorUI.cpp	2020-10-08 05:26:51 UTC (rev 268172)
@@ -85,6 +85,7 @@
 #if USE(UNIX_DOMAIN_SOCKETS)
     IPC::Connection::SocketPair socketPair = IPC::Connection::createPlatformConnection();
     IPC::Connection::Identifier connectionIdentifier(socketPair.server);
+    UNUSED_PARAM(connectionIdentifier);
     IPC::Attachment connectionClientPort(socketPair.client);
 #elif OS(DARWIN)
     mach_port_t listeningPort = MACH_PORT_NULL;
@@ -95,6 +96,7 @@
         CRASH();
 
     IPC::Connection::Identifier connectionIdentifier(listeningPort);
+    UNUSED_PARAM(connectionIdentifier);
     IPC::Attachment connectionClientPort(listeningPort, MACH_MSG_TYPE_MOVE_SEND);
 #elif PLATFORM(WIN)
     IPC::Connection::Identifier connectionIdentifier, connClient;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to