aboutsummaryrefslogtreecommitdiffstats
path: root/examples/example_chat.cpp
diff options
context:
space:
mode:
authoripknHama <ipknhama@gmail.com>2016-08-27 18:03:49 +0900
committeripknHama <ipknhama@gmail.com>2016-08-27 18:03:49 +0900
commite161da45e08a2eaaec747a784020d69f8223418d (patch)
tree0e5c326565e4ddc8fd26d05715666faaf757315f /examples/example_chat.cpp
parentabc36e1b3ab2edf30ea07ea2a82a395ce312f6f6 (diff)
downloadcrow-e161da45e08a2eaaec747a784020d69f8223418d.tar.gz
crow-e161da45e08a2eaaec747a784020d69f8223418d.zip
Remove warnings: manually applying #101, #104
Diffstat (limited to 'examples/example_chat.cpp')
-rw-r--r--examples/example_chat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/example_chat.cpp b/examples/example_chat.cpp
index ae031b7..2f80ffe 100644
--- a/examples/example_chat.cpp
+++ b/examples/example_chat.cpp
@@ -50,7 +50,7 @@ int main()
});
CROW_ROUTE(app, "/logs/<int>")
- ([](const crow::request& req, crow::response& res, int after){
+ ([](const crow::request& /*req*/, crow::response& res, int after){
CROW_LOG_INFO << "logs with last " << after;
if (after < (int)msgs.size())
{