projects
/
folly.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0704bd0
)
folly: fix one more -Wunused-parameter
author
Igor Sugak
<sugak@fb.com>
Mon, 1 Feb 2016 22:35:10 +0000
(14:35 -0800)
committer
facebook-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
patch
|
blob
|
history
diff --git
a/folly/io/async/AsyncSSLSocket.cpp
b/folly/io/async/AsyncSSLSocket.cpp
index 564438c60cfb551953d4064af4c7a24ff9cd5f27..b0e54e67fd62e6ce1aa4b05bee1f9ee5715a2faa 100644
(file)
--- 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
}