From: Vadim Zeitlin <vadim@wxwidgets.org> Date: Sun, 27 Feb 2011 18:36:52 +0000 (+0000) Subject: Add a trivial virtual dtor to wxMarkupParserOutput. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/036718302c7d11d60216aca820dd6c08534e7804 Add a trivial virtual dtor to wxMarkupParserOutput. This class isn't really supposed to be used polymorphically but add a virtual dtor just to suppress g++ warning about it. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67076 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/private/markupparser.h b/include/wx/private/markupparser.h index 751c9d67f7..9ae44ac5e0 100644 --- a/include/wx/private/markupparser.h +++ b/include/wx/private/markupparser.h @@ -78,6 +78,7 @@ class wxMarkupParserOutput { public: wxMarkupParserOutput() { } + virtual ~wxMarkupParserOutput() { } // Virtual functions called by wxMarkupParser while parsing the markup.