From f72575ad08963d20e4135ec18183e9346a5ddcac Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 21 Aug 2017 00:19:31 +0200 Subject: [PATCH] Remove unnecessary semicolon at top level This results in a warning from gcc with -pedantic. --- include/wx/html/m_templ.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/html/m_templ.h b/include/wx/html/m_templ.h index 121078f350..8001c8680a 100644 --- a/include/wx/html/m_templ.h +++ b/include/wx/html/m_templ.h @@ -75,7 +75,7 @@ I STRONGLY recommend reading and understanding these macros!! #define TAGS_MODULE_END(name) \ } \ }; \ - wxIMPLEMENT_DYNAMIC_CLASS(wxHTML_Module##name , wxHtmlTagsModule); + wxIMPLEMENT_DYNAMIC_CLASS(wxHTML_Module##name , wxHtmlTagsModule)