aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJaeseung Ha <ipknhama@gmail.com>2016-09-06 09:40:30 +0900
committerJaeseung Ha <ipknhama@gmail.com>2016-09-06 09:40:30 +0900
commite9d41a637303a8b9b1062b10325f75f2a18430f7 (patch)
treee05233adeeed2d61f75953193f6afc83fb164bfe /tests
parent43c9b093453656794aac11b06efd071e4e56c891 (diff)
downloadcrow-e9d41a637303a8b9b1062b10325f75f2a18430f7.tar.gz
crow-e9d41a637303a8b9b1062b10325f75f2a18430f7.zip
Remove warnings
Diffstat (limited to 'tests')
-rw-r--r--tests/unittest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/unittest.cpp b/tests/unittest.cpp
index 78732b0..2414134 100644
--- a/tests/unittest.cpp
+++ b/tests/unittest.cpp
@@ -670,11 +670,11 @@ struct NullMiddleware
struct context {};
template <typename AllContext>
- void before_handle(request& req, response& res, context& ctx, AllContext& all_ctx)
+ void before_handle(request&, response&, context&, AllContext&)
{}
template <typename AllContext>
- void after_handle(request& req, response& res, context& ctx, AllContext& all_ctx)
+ void after_handle(request&, response&, context&, AllContext&)
{}
};