From: Mikko Rasa Date: Sat, 21 Sep 2019 14:52:34 +0000 (+0300) Subject: Remove name from an unused variable X-Git-Url: http://git.tdb.fi/?p=libs%2Fnet.git;a=commitdiff_plain;h=dadb1b2524c26b12c0dff1d720fe2b080885d378 Remove name from an unused variable --- diff --git a/source/net/windows/socket.cpp b/source/net/windows/socket.cpp index a7268e8..5094cc4 100644 --- a/source/net/windows/socket.cpp +++ b/source/net/windows/socket.cpp @@ -70,7 +70,7 @@ void Socket::Private::set_block(bool b) ioctlsocket(handle, FIONBIO, &flag); } -void Socket::Private::set_inherit(bool i) +void Socket::Private::set_inherit(bool) { }