1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

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

Remove missed cases from ad042b09e0.

Fix #6007
This commit is contained in:
Anthony Bilinski 2020-04-13 01:06:30 -07:00
parent bd339d2cb6
commit 35f89612ff
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
2 changed files with 2 additions and 2 deletions

View File

@ -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
{

View File

@ -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
{