From: Manuel Nickschas Date: Thu, 13 Oct 2016 21:25:12 +0000 (+0200) Subject: ldap: Remove warnings X-Git-Tag: travis-deploy-test~275 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=4b0caf61565c8791efba283bbcaf73530b9feafc ldap: Remove warnings --- diff --git a/src/core/sqlauthenticator.cpp b/src/core/sqlauthenticator.cpp index f1ed1697..e7f057b7 100644 --- a/src/core/sqlauthenticator.cpp +++ b/src/core/sqlauthenticator.cpp @@ -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.