summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Markmann <tm@ayena.de>2015-10-06 07:33:24 (GMT)
committerSwift Review <review@swift.im>2015-10-14 16:44:01 (GMT)
commitac6cf9659718a18b1ea22f72dbf0cdb64cbf9a24 (patch)
tree2350ed917d70d2ba7daf027f230e52246117c10f /Swiften/FileTransfer
parent192e8631d4c9a196e13a20d22f57c392bac9dd73 (diff)
downloadswift-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/FileTransfer')
-rw-r--r--Swiften/FileTransfer/DefaultFileTransferTransporter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Swiften/FileTransfer/DefaultFileTransferTransporter.cpp b/Swiften/FileTransfer/DefaultFileTransferTransporter.cpp
index ca29898..20635f9 100644
--- a/Swiften/FileTransfer/DefaultFileTransferTransporter.cpp
+++ b/Swiften/FileTransfer/DefaultFileTransferTransporter.cpp
@@ -172,14 +172,14 @@ boost::shared_ptr<TransportSession> DefaultFileTransferTransporter::createIBBRec
}
boost::shared_ptr<TransportSession> DefaultFileTransferTransporter::createRemoteCandidateSession(
- boost::shared_ptr<ReadBytestream> stream, const JingleS5BTransportPayload::Candidate& candidate) {
+ boost::shared_ptr<ReadBytestream> stream, const JingleS5BTransportPayload::Candidate& /* candidate */) {
closeLocalSession();
return boost::make_shared<S5BTransportSession<SOCKS5BytestreamClientSession> >(
remoteS5BClientSession, stream);
}
boost::shared_ptr<TransportSession> DefaultFileTransferTransporter::createRemoteCandidateSession(
- boost::shared_ptr<WriteBytestream> stream, const JingleS5BTransportPayload::Candidate& candidate) {
+ boost::shared_ptr<WriteBytestream> stream, const JingleS5BTransportPayload::Candidate& /* candidate */) {
closeLocalSession();
return boost::make_shared<S5BTransportSession<SOCKS5BytestreamClientSession> >(
remoteS5BClientSession, stream);