modernize: Use '= default' instead of empty ctor/dtor bodies
[quassel.git] / src / core / ctcpparser.h
index 7fd2a83..0118be2 100644 (file)
@@ -89,7 +89,7 @@ private:
         QString bufferName;
         QList<QByteArray> replies;
 
-        CtcpReply()  {}
+        CtcpReply() = default;
         CtcpReply(CoreNetwork *net, QString buf) : network(net), bufferName(std::move(buf)) {}
     };