mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2025-05-17 10:18:29 +00:00
Fixed warning
This commit is contained in:
parent
6e1879dfae
commit
17428a8fbf
1 changed files with 1 additions and 1 deletions
|
@ -3250,7 +3250,7 @@ TEST(SSLClientTest, ServerCertificateVerification4) {
|
|||
SSLServer svr(SERVER_CERT2_FILE, SERVER_PRIVATE_KEY_FILE);
|
||||
ASSERT_TRUE(svr.is_valid());
|
||||
|
||||
svr.Get("/test", [&](const Request &req, Response &res) {
|
||||
svr.Get("/test", [&](const Request &, Response &res) {
|
||||
res.set_content("test", "text/plain");
|
||||
svr.stop();
|
||||
ASSERT_TRUE(true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue