ldap: Remove warnings
[quassel.git] / 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.