diff options
author | Kevin Smith <git@kismith.co.uk> | 2015-02-09 22:33:13 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2015-02-09 22:35:35 (GMT) |
commit | 66567c962202920b0d6bc06029ed37565cd4a81c (patch) | |
tree | 7abc7f552e947b0168aaf338017d1759e278e2b5 /Swift/Controllers/Storages | |
parent | 6b03bde42313bbc45c091930f0c4e6952924308b (diff) | |
download | swift-66567c962202920b0d6bc06029ed37565cd4a81c.zip swift-66567c962202920b0d6bc06029ed37565cd4a81c.tar.bz2 |
Fix unused parameter warnings in some testing headers
Test-Information:
Warnings went away in another project using these headers
Change-Id: I336925153a4a549bb33cc977c6a483ec81cd1ff6
Diffstat (limited to 'Swift/Controllers/Storages')
-rw-r--r-- | Swift/Controllers/Storages/MemoryStoragesFactory.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Swift/Controllers/Storages/MemoryStoragesFactory.h b/Swift/Controllers/Storages/MemoryStoragesFactory.h index 5953eb0..8c68f19 100644 --- a/Swift/Controllers/Storages/MemoryStoragesFactory.h +++ b/Swift/Controllers/Storages/MemoryStoragesFactory.h @@ -1,5 +1,5 @@ /* - * Copyright (c) 2010-2013 Isode Limited. + * Copyright (c) 2010-2015 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ @@ -12,12 +12,12 @@ namespace Swift { class JID; class CryptoProvider; - + class MemoryStoragesFactory : public StoragesFactory { public: MemoryStoragesFactory(CryptoProvider* cryptoProvider) : cryptoProvider_(cryptoProvider) {} - virtual Storages* createStorages(const JID& profile) const { + virtual Storages* createStorages(const JID& /*profile*/) const { return new MemoryStorages(cryptoProvider_); } private: |