summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier Goffart <olivier.goffart@nokia.com>2010-08-04 08:14:50 (GMT)
committerOlivier Goffart <olivier.goffart@nokia.com>2010-08-04 09:38:00 (GMT)
commitef2ee289926c175146e181292b2808225441307f (patch)
treefad41fdd1da8c47b2f6777d8fae61d509643be39
parent5683a6f6f30e65c272c1194f31395161bde229e4 (diff)
downloadQt-ef2ee289926c175146e181292b2808225441307f.zip
Qt-ef2ee289926c175146e181292b2808225441307f.tar.gz
Qt-ef2ee289926c175146e181292b2808225441307f.tar.bz2
Fix compilation with QT_NO_DEBUG_STREAM
That code should have been removed in commit 26f43dcc70a0bcc8aec96a0ca6f648c543b97b10 There is a template member operator<< in QNoDebug
-rw-r--r--src/corelib/io/qdebug.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/corelib/io/qdebug.h b/src/corelib/io/qdebug.h
index 0591318..a9d5ad4 100644
--- a/src/corelib/io/qdebug.h
+++ b/src/corelib/io/qdebug.h
@@ -283,9 +283,6 @@ Q_CORE_EXPORT_INLINE QDebug qDebug() { return QDebug(QtDebugMsg); }
inline QNoDebug qDebug() { return QNoDebug(); }
#define qDebug QT_NO_QDEBUG_MACRO
-template<typename T>
-inline QNoDebug operator<<(QNoDebug debug, const T &) { return debug; }
-
#endif
#if !defined(QT_NO_WARNING_OUTPUT)