From 0cc1ca9a8dcff402891582dda4da34a5d1687adc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Bostr=C3=B6m?= Date: Tue, 15 Oct 2024 15:09:04 +1100 Subject: [PATCH] Remove extra semicolon (#1963) This fixes a -Wc++98-compat-extra-semi instance. --- httplib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httplib.h b/httplib.h index e81e7ef..72bd2b6 100644 --- a/httplib.h +++ b/httplib.h @@ -395,7 +395,7 @@ struct hash { } }; -}; // namespace case_ignore +} // namespace case_ignore // This is based on // "http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4189".