1
0
mirror of synced 2025-06-12 07:41:53 +03:00

Fix test build warning (#1344)

Co-authored-by: ata.yardimci <ata.yardimci@erstream.com>
This commit is contained in:
Ata Yardımcı
2022-07-31 23:51:06 +03:00
committed by GitHub
parent 0b541ffebc
commit 1bd88de2e5

View File

@ -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;
});