From b8da443123651381b4e632f6f0cf30d8970a6027 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Bostr=C3=B6m?= Date: Tue, 15 Oct 2024 14:41:54 +1100 Subject: [PATCH] Remove extra semicolon 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 99112b9063..23ed1b3224 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".