Browse Source

chore(cleanup): don't add semicolon to Q_DECLARE_METATYPE

Remove missed cases from ad042b09e0.

Fix #6007
reviewable/pr6087/r1
Anthony Bilinski 5 years ago
parent
commit
35f89612ff
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
  1. 2
      test/core/core_test.cpp
  2. 2
      test/net/bsu_test.cpp

2
test/core/core_test.cpp

@ -29,7 +29,7 @@ @@ -29,7 +29,7 @@
#include <src/persistence/settings.h>
#include <iostream>
Q_DECLARE_METATYPE(QList<DhtServer>);
Q_DECLARE_METATYPE(QList<DhtServer>)
class MockSettings : public QObject, public ICoreSettings
{

2
test/net/bsu_test.cpp

@ -25,7 +25,7 @@ @@ -25,7 +25,7 @@
#include <QtTest/QtTest>
// Needed to make this type known to Qt
Q_DECLARE_METATYPE(QList<DhtServer>);
Q_DECLARE_METATYPE(QList<DhtServer>)
class TestBootstrapNodesUpdater : public QObject
{

Loading…
Cancel
Save