Remove explicit twice
This commit is contained in:
parent
dc36aee7ff
commit
f1115ba706
@ -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);
|
||||
|
@ -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();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user