Fixed warnings

This commit is contained in:
yhirose 2017-12-05 17:28:52 -05:00
parent 4fb2f51766
commit e58cfe8168
3 changed files with 6 additions and 6 deletions

View file

@ -12,7 +12,7 @@ int main(void)
{
Server svr;
svr.get("/hi", [](const auto& req, auto& res) {
svr.get("/hi", [](const auto& /*req*/, auto& res) {
res.set_content("Hello World!", "text/plain");
});