From: Sebastian Goth Date: Mon, 28 Jul 2008 12:16:24 +0000 (+0200) Subject: Removed special treatment of <<(const char*) X-Git-Tag: 0.3.0~194 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=41744a68745db753726243beeee2afe6aa23a87c;ds=sidebyside Removed special treatment of <<(const char*) --- 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: