From 41744a68745db753726243beeee2afe6aa23a87c Mon Sep 17 00:00:00 2001 From: Sebastian Goth Date: Mon, 28 Jul 2008 14:16:24 +0200 Subject: [PATCH] Removed special treatment of <<(const char*) --- src/common/logger.h | 1 - 1 file changed, 1 deletion(-) 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: -- 2.20.1