Browse Source

Fix test build warning (#1344)

Co-authored-by: ata.yardimci <[email protected]>
Ata Yardımcı 3 years ago
parent
commit
1bd88de2e5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/test.cc

+ 1 - 1
test/test.cc

@@ -4752,7 +4752,7 @@ TEST(SendAPI, SimpleInterface_Online) {
 
 TEST(ClientImplMethods, GetSocketTest) {
   httplib::Server svr;
-  svr.Get( "/", [&](const httplib::Request& req, httplib::Response& res) {
+  svr.Get( "/", [&](const httplib::Request& /*req*/, httplib::Response& res) {
     res.status = 200;
   });