summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2016-07-15 14:15:36 (GMT)
committerKevin Smith <kevin.smith@isode.com>2016-07-22 17:06:02 (GMT)
commita4a6ae738a2df297b889e3c622910431e8736152 (patch)
tree4f17824e1953de7b3832af9902754fdb470bf876 /Swiften/Parser/PayloadParsers/PubSubAffiliationParser.cpp
parent1b5b4c8c57b34b1a451418472442197b8ae1da37 (diff)
downloadswift-a4a6ae738a2df297b889e3c622910431e8736152.zip
swift-a4a6ae738a2df297b889e3c622910431e8736152.tar.bz2
Remove pragmas to ignore unused private fields
They were introduced a while back through automatically generated code. Removal of those #pragma statements reduces the code and further improves maintainability. Test-Information: Builds on OS X 10.11.5 without any warnings. Change-Id: Idc2989663d39e351bedf9e1355eb5c7d163f11c2
Diffstat (limited to 'Swiften/Parser/PayloadParsers/PubSubAffiliationParser.cpp')
-rw-r--r--Swiften/Parser/PayloadParsers/PubSubAffiliationParser.cpp12
1 files changed, 3 insertions, 9 deletions
diff --git a/Swiften/Parser/PayloadParsers/PubSubAffiliationParser.cpp b/Swiften/Parser/PayloadParsers/PubSubAffiliationParser.cpp
index cba3816..764b3a7 100644
--- a/Swiften/Parser/PayloadParsers/PubSubAffiliationParser.cpp
+++ b/Swiften/Parser/PayloadParsers/PubSubAffiliationParser.cpp
@@ -1,23 +1,19 @@
/*
- * Copyright (c) 2013 Isode Limited.
+ * Copyright (c) 2013-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
-#pragma clang diagnostic ignored "-Wunused-private-field"
-
#include <Swiften/Parser/PayloadParsers/PubSubAffiliationParser.h>
#include <boost/optional.hpp>
-
-#include <Swiften/Parser/PayloadParserFactoryCollection.h>
-#include <Swiften/Parser/PayloadParserFactory.h>
#include <Swiften/Parser/EnumParser.h>
+#include <Swiften/Parser/PayloadParserFactory.h>
using namespace Swift;
-PubSubAffiliationParser::PubSubAffiliationParser(PayloadParserFactoryCollection* parsers) : parsers(parsers), level(0) {
+PubSubAffiliationParser::PubSubAffiliationParser(PayloadParserFactoryCollection* /*parsers*/) : level(0) {
}
PubSubAffiliationParser::~PubSubAffiliationParser() {
@@ -35,8 +31,6 @@ void PubSubAffiliationParser::handleStartElement(const std::string& element, con
}
}
-
-
if (level >= 1 && currentPayloadParser) {
currentPayloadParser->handleStartElement(element, ns, attributes);
}