From 8de7ec2123c08088e5ac089522d99ec5d4629ee4 Mon Sep 17 00:00:00 2001 From: Navid Jalali Date: Thu, 16 Dec 2021 19:41:03 +0330 Subject: [PATCH] Missing inline specifier in http_status_str function definition fixed --- include/crow/http_parser_merged.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/crow/http_parser_merged.h b/include/crow/http_parser_merged.h index 637890f19..955df4a44 100644 --- a/include/crow/http_parser_merged.h +++ b/include/crow/http_parser_merged.h @@ -2568,7 +2568,7 @@ static const char *method_strings[] = return CROW_ELEM_AT(method_strings, m, ""); } -const char * +inline const char * http_status_str (enum http_status s) { switch (s) {