From 036718302c7d11d60216aca820dd6c08534e7804 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 27 Feb 2011 18:36:52 +0000 Subject: [PATCH] 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 --- include/wx/private/markupparser.h | 1 + 1 file changed, 1 insertion(+) 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.