From cdadb0471dd8ed3ca41612dcd3ba30265403f34d Mon Sep 17 00:00:00 2001 From: Igor Sugak Date: Mon, 1 Feb 2016 14:35:10 -0800 Subject: [PATCH] folly: fix one more -Wunused-parameter Summary: The usage is guarded by a preprocessor macro, and I didn't noticed this earlier. Reviewed By: yfeldblum Differential Revision: D2887016 fb-gh-sync-id: 791c4d16475aab77235792953997a281354018e9 --- folly/io/async/AsyncSSLSocket.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/folly/io/async/AsyncSSLSocket.cpp b/folly/io/async/AsyncSSLSocket.cpp index 564438c6..b0e54e67 100644 --- a/folly/io/async/AsyncSSLSocket.cpp +++ b/folly/io/async/AsyncSSLSocket.cpp @@ -824,6 +824,7 @@ bool AsyncSSLSocket::getSelectedNextProtocolNoThrow( } return true; #else + (void)protoType; return false; #endif } -- 2.34.1