No longer support VS 2013 and older #1325 (#1326)

* Fixed a warning

* No longer support VS 2013 and older (Fix #1325)
This commit is contained in:
yhirose 2022-07-14 20:57:41 -04:00 committed by GitHub
parent 5e6f973b99
commit 37bb3c6a77
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 20 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");
});