diff options
| author | hjk <[email protected]> | 2019-07-23 10:58:00 +0200 |
|---|---|---|
| committer | hjk <[email protected]> | 2019-07-23 11:55:59 +0000 |
| commit | 251287f0d35dd82e68dabed8214ef8af893aff91 (patch) | |
| tree | a3ba843c1c23f4aea06bc01bf7ab0dd69d6fc741 /src/plugins/bazaar/bazaarplugin.cpp | |
| parent | 2b26eca80f9ebcdc2f1dc0d890a39a4fbc2d129c (diff) | |
Avoid warning on empty expressions
For some reason, Q_UNUSED includes already a semicolon, adding one
on the user side creates an additional empty statement.
Change-Id: I9c5e8fac381345a60792cb75e2938fd53958d3b0
Reviewed-by: Christian Stenger <[email protected]>
Diffstat (limited to 'src/plugins/bazaar/bazaarplugin.cpp')
| -rw-r--r-- | src/plugins/bazaar/bazaarplugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/bazaar/bazaarplugin.cpp b/src/plugins/bazaar/bazaarplugin.cpp index a35b2ede625..c2990c9232f 100644 --- a/src/plugins/bazaar/bazaarplugin.cpp +++ b/src/plugins/bazaar/bazaarplugin.cpp @@ -145,8 +145,8 @@ BazaarPlugin::~BazaarPlugin() bool BazaarPlugin::initialize(const QStringList &arguments, QString *errorMessage) { - Q_UNUSED(arguments); - Q_UNUSED(errorMessage); + Q_UNUSED(arguments) + Q_UNUSED(errorMessage) Context context(Constants::BAZAAR_CONTEXT); |
