folly: fix one more -Wunused-parameter
authorIgor Sugak <sugak@fb.com>
Mon, 1 Feb 2016 22:35:10 +0000 (14:35 -0800)
committerfacebook-github-bot-0 <folly-bot@fb.com>
Mon, 1 Feb 2016 23:20:24 +0000 (15:20 -0800)
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

index 564438c60cfb551953d4064af4c7a24ff9cd5f27..b0e54e67fd62e6ce1aa4b05bee1f9ee5715a2faa 100644 (file)
@@ -824,6 +824,7 @@ bool AsyncSSLSocket::getSelectedNextProtocolNoThrow(
   }
   return true;
 #else
+  (void)protoType;
   return false;
 #endif
 }