Fixed a warning

This commit is contained in:
yhirose 2022-07-14 20:10:11 -04:00
parent 5e6f973b99
commit ee2aa9a092
1 changed files with 1 additions and 1 deletions

View File

@ -4982,7 +4982,7 @@ TEST(MultipartFormDataTest, LargeData) {
TEST(MultipartFormDataTest, WithPreamble) {
Server svr;
svr.Post("/post", [&](const Request &req, Response &res) {
svr.Post("/post", [&](const Request & /*req*/, Response &res) {
res.set_content("ok", "text/plain");
});