From: Manuel Nickschas Date: Mon, 1 Sep 2008 23:37:51 +0000 (+0200) Subject: Make compile on MSVC again... that thing doesn't know #warning, apparently -_- X-Git-Tag: 0.3.1~299 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=e128a8ef50a0a3fce1d75d7d06121b2ea6c74d6a Make compile on MSVC again... that thing doesn't know #warning, apparently -_- --- diff --git a/src/core/ircserverhandler.cpp b/src/core/ircserverhandler.cpp index 460f10a9..5484d3b4 100644 --- a/src/core/ircserverhandler.cpp +++ b/src/core/ircserverhandler.cpp @@ -797,7 +797,9 @@ void IrcServerHandler::handle324(const QString &prefix, const QList void IrcServerHandler::handle329(const QString &prefix, const QList ¶ms) { Q_UNUSED(prefix); Q_UNUSED(params) -#warning "Implement handle329 (Channel creation time)" +#ifdef __GNUC__ +# warning "Implement handle329 (Channel creation time)" +#endif // FIXME implement this... }