From 35f89612ffce042099dd57590997a91a8ea867ef Mon Sep 17 00:00:00 2001 From: Anthony Bilinski Date: Mon, 13 Apr 2020 01:06:30 -0700 Subject: [PATCH] chore(cleanup): don't add semicolon to Q_DECLARE_METATYPE Remove missed cases from ad042b09e00da16c85c0963cef59a841a7417c90. Fix #6007 --- test/core/core_test.cpp | 2 +- test/net/bsu_test.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/core/core_test.cpp b/test/core/core_test.cpp index 6afc73e46..f897c934e 100644 --- a/test/core/core_test.cpp +++ b/test/core/core_test.cpp @@ -29,7 +29,7 @@ #include #include -Q_DECLARE_METATYPE(QList); +Q_DECLARE_METATYPE(QList) class MockSettings : public QObject, public ICoreSettings { diff --git a/test/net/bsu_test.cpp b/test/net/bsu_test.cpp index 7d0e30f23..bdf8a6f67 100644 --- a/test/net/bsu_test.cpp +++ b/test/net/bsu_test.cpp @@ -25,7 +25,7 @@ #include // Needed to make this type known to Qt -Q_DECLARE_METATYPE(QList); +Q_DECLARE_METATYPE(QList) class TestBootstrapNodesUpdater : public QObject {