Commit 3384af41 authored by Aaron Orenstein's avatar Aaron Orenstein Committed by Facebook Github Bot

Mark non-linux unused parameters as unused

Summary: Mark non-linux unused parameters as unused

Reviewed By: yfeldblum, Orvid

Differential Revision: D8103305

fbshipit-source-id: dc67849177e95718d0d6d658d1e2af88e867d81f
parent 0cb0a734
......@@ -244,6 +244,9 @@ static AsyncSocket::SendMsgParamsCallback defaultSendMsgParamsCallback;
// Based on flags, signal the transparent handler to disable certain functions
void disableTransparentFunctions(int fd, bool noTransparentTls, bool noTSocks) {
(void)fd;
(void)noTransparentTls;
(void)noTSocks;
#if __linux__
if (noTransparentTls) {
// Ignore return value, errors are ok
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment