summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Elements/StanzaAck.cpp')
-rw-r--r--Swiften/Elements/StanzaAck.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/Swiften/Elements/StanzaAck.cpp b/Swiften/Elements/StanzaAck.cpp
index bd0b78d..dda97f5 100644
--- a/Swiften/Elements/StanzaAck.cpp
+++ b/Swiften/Elements/StanzaAck.cpp
@@ -1,19 +1,17 @@
1/* 1/*
2 * Copyright (c) 2013 Isode Limited. 2 * Copyright (c) 2013-2018 Isode Limited.
3 * All rights reserved. 3 * All rights reserved.
4 * See the COPYING file for more information. 4 * See the COPYING file for more information.
5 */ 5 */
6 6
7#include <Swiften/Elements/StanzaAck.h> 7#include <Swiften/Elements/StanzaAck.h>
8 8
9#include <boost/numeric/conversion/cast.hpp>
10
11using namespace Swift; 9using namespace Swift;
12 10
13StanzaAck::~StanzaAck() { 11StanzaAck::~StanzaAck() {
14} 12}
15 13
16void StanzaAck::setHandledStanzasCount(int i) { 14void StanzaAck::setHandledStanzasCount(unsigned int i) {
17 handledStanzasCount = boost::numeric_cast<unsigned int>(i); 15 handledStanzasCount = i;
18 valid = true; 16 valid = true;
19} 17}