From 045a5e3b42747be1198ec6d33d344aaed1b3618b Mon Sep 17 00:00:00 2001 From: Marc Mutz Date: Fri, 3 Aug 2012 10:55:04 +0200 Subject: [PATCH] QtNoDebug: remove special member functions These are better generated by the compiler. Change-Id: I5afa9fd17997c220622ed0e5990c33e52700840f Reviewed-by: Laszlo Papp Reviewed-by: Thiago Macieira --- src/corelib/io/qdebug.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/corelib/io/qdebug.h b/src/corelib/io/qdebug.h index 8bc4128a95..5ca33a3651 100644 --- a/src/corelib/io/qdebug.h +++ b/src/corelib/io/qdebug.h @@ -135,9 +135,6 @@ Q_DECLARE_SHARED(QDebug) class QNoDebug { public: - inline QNoDebug(){} - inline QNoDebug(const QDebug &){} - inline ~QNoDebug(){} inline QNoDebug &operator<<(QTextStreamFunction) { return *this; } inline QNoDebug &operator<<(QTextStreamManipulator) { return *this; } inline QNoDebug &space() { return *this; }