Skip to content

Commit 6b2862b

Browse files
committed
Update server.cpp
Removed unused parameter name. Signed-off-by: Brad Hutchings <[email protected]>
1 parent 1ac6ea9 commit 6b2862b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/server/server.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4515,7 +4515,7 @@ int main(int argc, char ** argv) {
45154515
return false;
45164516
});
45174517

4518-
svr->Get("/chat/", [](const httplib::Request & req, httplib::Response & res) {
4518+
svr->Get("/chat/", [](const httplib::Request &, httplib::Response & res) {
45194519
res.set_redirect("/chat");
45204520
return false;
45214521
});

0 commit comments

Comments
 (0)