summaryrefslogtreecommitdiffstats
path: root/src/corelib/io/qdebug.h
diff options
context:
space:
mode:
authorOlivier Goffart <olivier.goffart@nokia.com>2010-08-04 10:14:50 +0200
committerOlivier Goffart <olivier.goffart@nokia.com>2010-08-04 11:38:00 +0200
commitef2ee289926c175146e181292b2808225441307f (patch)
treefad41fdd1da8c47b2f6777d8fae61d509643be39 /src/corelib/io/qdebug.h
parent5683a6f6f30e65c272c1194f31395161bde229e4 (diff)
Fix compilation with QT_NO_DEBUG_STREAM
That code should have been removed in commit 26f43dcc70a0bcc8aec96a0ca6f648c543b97b10 There is a template member operator<< in QNoDebug
Diffstat (limited to 'src/corelib/io/qdebug.h')
-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 0591318553..a9d5ad4ab2 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)