Remove explicit twice

This commit is contained in:
Jonas Kvinge 2020-06-26 22:43:46 +02:00
parent dc36aee7ff
commit f1115ba706
2 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,7 @@ class MockNetworkReply : public QNetworkReply {
Q_OBJECT
public:
MockNetworkReply();
explicit explicit MockNetworkReply(const QByteArray& data);
explicit MockNetworkReply(const QByteArray& data);
// Use these to set expectations.
void SetData(const QByteArray& data);

View File

@ -62,13 +62,13 @@ Q_DECLARE_METATYPE(QModelIndex)
class TemporaryResource : public QTemporaryFile {
public:
explicit explicit TemporaryResource(const QString& filename);
explicit TemporaryResource(const QString& filename);
};
class TestQObject : public QObject {
Q_OBJECT
public:
explicit explicit TestQObject(QObject* parent = nullptr);
explicit TestQObject(QObject* parent = nullptr);
void Emit();