From: Michael Marley Date: Mon, 6 Apr 2015 01:54:36 +0000 (-0400) Subject: Fix compiler warning when compiling without QCA support X-Git-Tag: 0.12.0~4^2 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=60bf8c5270a523172fd4e4dd4768058af612439f Fix compiler warning when compiling without QCA support --- diff --git a/src/core/coreuserinputhandler.cpp b/src/core/coreuserinputhandler.cpp index 72ac9960..7887a929 100644 --- a/src/core/coreuserinputhandler.cpp +++ b/src/core/coreuserinputhandler.cpp @@ -772,6 +772,7 @@ void CoreUserInputHandler::defaultHandler(QString cmd, const BufferInfo &bufferI void CoreUserInputHandler::putPrivmsg(const QString &target, const QString &message, std::function encodeFunc, Cipher *cipher) { + Q_UNUSED(cipher); QString cmd("PRIVMSG"); QByteArray targetEnc = serverEncode(target);