From acab73ef68718ab98aba83605b9eafb2d980409e Mon Sep 17 00:00:00 2001 From: ayaankhan98 Date: Tue, 1 Dec 2020 12:35:46 +0530 Subject: [PATCH] removed extra req arg --- include/crow/routing.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/crow/routing.h b/include/crow/routing.h index 2403d10a0..340a4ebe4 100644 --- a/include/crow/routing.h +++ b/include/crow/routing.h @@ -534,7 +534,7 @@ namespace crow #else [f] #endif - (const crow::request& req, crow::response& res, Args ... args) { + (crow::response& res, Args ... args) { f(res, args...); }); }