OSDN Git Service

add spaces to QDebug constructor for consistency
authorIvailo Monev <xakepa10@gmail.com>
Thu, 24 Dec 2020 17:06:27 +0000 (17:06 +0000)
committerIvailo Monev <xakepa10@gmail.com>
Thu, 24 Dec 2020 17:06:27 +0000 (17:06 +0000)
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
src/core/io/qdebug.h

index 6ad9496..9a1e76e 100644 (file)
@@ -61,7 +61,7 @@ public:
     inline QDebug(QIODevice *device) : stream(new Stream(device)) {}
     inline QDebug(QString *string) : stream(new Stream(string)) {}
     inline QDebug(QtMsgType t) : stream(new Stream(t)) {}
-    inline QDebug(const QDebug &o):stream(o.stream) { ++stream->ref; }
+    inline QDebug(const QDebug &o) : stream(o.stream) { ++stream->ref; }
     inline QDebug &operator=(const QDebug &other);
     inline ~QDebug() {
         if (!--stream->ref) {