Browse Source

Remove extra semicolon (#1963)

This fixes a -Wc++98-compat-extra-semi instance.
Peter Boström 1 year ago
parent
commit
0cc1ca9a8d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      httplib.h

+ 1 - 1
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".