diff options
author | Tobias Markmann <tm@ayena.de> | 2015-11-04 08:31:06 (GMT) |
---|---|---|
committer | Kevin Smith <kevin.smith@isode.com> | 2015-11-09 16:05:25 (GMT) |
commit | 526bbaf268851f8295a72f4ca8e6a97bcf43e37a (patch) | |
tree | 5d2b806ad73cfff026d0a084c9a384c900f96329 /Swiften/Parser | |
parent | 879ca89f1df610f9de30e4396956d62ba5d4bdff (diff) | |
download | swift-526bbaf268851f8295a72f4ca8e6a97bcf43e37a.zip swift-526bbaf268851f8295a72f4ca8e6a97bcf43e37a.tar.bz2 |
Change virtual calls in ctors/dtors to be explicit
Test-Information:
Still builds and tests pass on OS X 10.10.5.
Change-Id: Ic616e7b9de443ce34b46de63ac1bb0cca34b08ee
Diffstat (limited to 'Swiften/Parser')
-rw-r--r-- | Swiften/Parser/MessageParser.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Swiften/Parser/MessageParser.cpp b/Swiften/Parser/MessageParser.cpp index fd9d57c..5de0038 100644 --- a/Swiften/Parser/MessageParser.cpp +++ b/Swiften/Parser/MessageParser.cpp @@ -1,18 +1,18 @@ /* - * Copyright (c) 2010 Isode Limited. + * Copyright (c) 2010-2015 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ -#include <boost/optional.hpp> - #include <Swiften/Parser/MessageParser.h> +#include <boost/optional.hpp> + namespace Swift { MessageParser::MessageParser(PayloadParserFactoryCollection* factories) : GenericStanzaParser<Message>(factories) { - getStanzaGeneric()->setType(Message::Normal); + GenericStanzaParser<Message>::getStanzaGeneric()->setType(Message::Normal); } void MessageParser::handleStanzaAttributes(const AttributeMap& attributes) { |