X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Flogger.h;fp=src%2Fcommon%2Flogger.h;h=113fc5624e71727c21d421893a5338cbaef6095b;hb=41744a68745db753726243beeee2afe6aa23a87c;hp=c372a11c1aa782316967613e980b6112e8b52853;hpb=c9b7f5cfe4377cc242c24212fff48aad70192b48;p=quassel.git diff --git a/src/common/logger.h b/src/common/logger.h index c372a11c..113fc562 100644 --- a/src/common/logger.h +++ b/src/common/logger.h @@ -42,7 +42,6 @@ class Logger { template inline Logger &operator<<(const T &value) { _stream << value; return *this; } inline Logger &operator<<(const QStringList & t) { _stream << t.join(" "); return *this; } - inline Logger &operator<<(const char* t) { _stream << QString::fromLocal8Bit(t); return *this; } inline Logger &operator<<(bool t) { _stream << (t ? "true" : "false"); return *this; } private: