ldap: Remove warnings
authorManuel Nickschas <sputnick@quassel-irc.org>
Thu, 13 Oct 2016 21:25:12 +0000 (23:25 +0200)
committerBen Rosser <rosser.bjr@gmail.com>
Sat, 27 May 2017 18:01:06 +0000 (14:01 -0400)
src/core/sqlauthenticator.cpp

index f1ed169..e7f057b 100644 (file)
@@ -63,11 +63,14 @@ UserId SqlAuthenticator::validateUser(const QString &user, const QString &passwo
 
 bool SqlAuthenticator::setup(const QVariantMap &settings)
 {
+    Q_UNUSED(settings)
     return true;
 }
 
 Authenticator::State SqlAuthenticator::init(const QVariantMap &settings)
 {
+    Q_UNUSED(settings)
+
     // TODO: FIXME: this should check if the storage provider is ready, but I don't
     // know if there's an exposed way to do that at the moment.