diff options
author | Tobias Markmann <tm@ayena.de> | 2016-01-13 22:03:37 (GMT) |
---|---|---|
committer | Kevin Smith <kevin.smith@isode.com> | 2016-01-15 13:41:45 (GMT) |
commit | 730a9d26ef340373796aeb020175fce0ed716865 (patch) | |
tree | 4de361c9bb98914ec67685237e68c4e9aa9acb42 /Swiften/Parser | |
parent | a85e554093966d7174218a17e45cf8e8b6efadca (diff) | |
download | swift-730a9d26ef340373796aeb020175fce0ed716865.zip swift-730a9d26ef340373796aeb020175fce0ed716865.tar.bz2 |
Add missing virtual keyword to some destructors
Adds missing virtual keyword to destructors of classes which
have a non-empty destructor and are inheriting from other
classes and implement virtual functions.
Test-Information:
Compiles and unit tests pass on Windows 8 with VS 2013.
Change-Id: I172b5de8eda63eb8057113fbc979444abde3e0a7
Diffstat (limited to 'Swiften/Parser')
-rw-r--r-- | Swiften/Parser/LibXMLParser.h | 4 | ||||
-rw-r--r-- | Swiften/Parser/XMPPParser.h | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/Swiften/Parser/LibXMLParser.h b/Swiften/Parser/LibXMLParser.h index a03ff71..c247548 100644 --- a/Swiften/Parser/LibXMLParser.h +++ b/Swiften/Parser/LibXMLParser.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010 Isode Limited. + * Copyright (c) 2010-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ @@ -19,7 +19,7 @@ namespace Swift { class LibXMLParser : public XMLParser, public boost::noncopyable { public: LibXMLParser(XMLParserClient* client); - ~LibXMLParser(); + virtual ~LibXMLParser(); bool parse(const std::string& data); diff --git a/Swiften/Parser/XMPPParser.h b/Swiften/Parser/XMPPParser.h index e8e0917..dcc98ca 100644 --- a/Swiften/Parser/XMPPParser.h +++ b/Swiften/Parser/XMPPParser.h @@ -1,17 +1,17 @@ /* - * Copyright (c) 2010 Isode Limited. + * Copyright (c) 2010-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once -#include <boost/shared_ptr.hpp> #include <boost/noncopyable.hpp> +#include <boost/shared_ptr.hpp> #include <Swiften/Base/API.h> -#include <Swiften/Parser/XMLParserClient.h> #include <Swiften/Parser/AttributeMap.h> +#include <Swiften/Parser/XMLParserClient.h> namespace Swift { class XMLParser; @@ -26,7 +26,7 @@ namespace Swift { XMPPParserClient* parserClient, PayloadParserFactoryCollection* payloadParserFactories, XMLParserFactory* xmlParserFactory); - ~XMPPParser(); + virtual ~XMPPParser(); bool parse(const std::string&); |