mirror of
https://github.com/yhirose/cpp-httplib
synced 2024-11-21 14:29:10 -07:00
Fix test build warning (#1344)
Co-authored-by: ata.yardimci <ata.yardimci@erstream.com>
This commit is contained in:
parent
0b541ffebc
commit
1bd88de2e5
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in a new issue