Commit 05cf1d41 authored by Chad Austin's avatar Chad Austin Committed by Facebook GitHub Bot

fix unused parameter warnings

Summary: Fix two small warnings when building AsyncUDPSocket on macOS.

Reviewed By: fanzeyi

Differential Revision: D20525411

fbshipit-source-id: 39cd84364413d434d261c17c4c8a87e31ac75a42
parent 00c84e07
......@@ -444,6 +444,8 @@ void AsyncUDPSocket::fillMsgVec(
msg.msg_controllen = 0;
}
#else
(void)gso;
(void)gsoControl;
msg.msg_control = nullptr;
msg.msg_controllen = 0;
#endif
......
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