diff options
author | Tobias Markmann <tm@ayena.de> | 2015-10-06 07:33:24 (GMT) |
---|---|---|
committer | Swift Review <review@swift.im> | 2015-10-14 16:44:01 (GMT) |
commit | ac6cf9659718a18b1ea22f72dbf0cdb64cbf9a24 (patch) | |
tree | 2350ed917d70d2ba7daf027f230e52246117c10f /Swiften/Network/BoostConnection.h | |
parent | 192e8631d4c9a196e13a20d22f57c392bac9dd73 (diff) | |
download | swift-ac6cf9659718a18b1ea22f72dbf0cdb64cbf9a24.zip swift-ac6cf9659718a18b1ea22f72dbf0cdb64cbf9a24.tar.bz2 |
Fix compiler warnings about unused variables/arguments
Test-Informations:
Code compiles without warnings and tests still pass.
Change-Id: If74c615706b8125c3c5186f0d940c103749ddb80
Diffstat (limited to 'Swiften/Network/BoostConnection.h')
-rw-r--r-- | Swiften/Network/BoostConnection.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Swiften/Network/BoostConnection.h b/Swiften/Network/BoostConnection.h index d238a3f..83a8f01 100644 --- a/Swiften/Network/BoostConnection.h +++ b/Swiften/Network/BoostConnection.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010 Isode Limited. + * Copyright (c) 2010-2015 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ @@ -12,9 +12,9 @@ #include <boost/thread/mutex.hpp> #include <Swiften/Base/API.h> -#include <Swiften/Network/Connection.h> -#include <Swiften/EventLoop/EventOwner.h> #include <Swiften/Base/SafeByteArray.h> +#include <Swiften/EventLoop/EventOwner.h> +#include <Swiften/Network/Connection.h> namespace boost { class thread; @@ -30,7 +30,7 @@ namespace Swift { public: typedef boost::shared_ptr<BoostConnection> ref; - ~BoostConnection(); + virtual ~BoostConnection(); static ref create(boost::shared_ptr<boost::asio::io_service> ioService, EventLoop* eventLoop) { return ref(new BoostConnection(ioService, eventLoop)); |