From b4a9801f0558490f6863dfdd41a1b01395ec1753 Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 18 Mar 2020 14:24:52 +0100 Subject: [PATCH] Android: Drop some unneeded semicolons in class declaration Less warnings. Amends f46099d21e5. Change-Id: I50f0bec7b0db9d9e16191523b183496c4cd5b552 Reviewed-by: Christian Stenger --- src/plugins/android/androidconfigurations.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/plugins/android/androidconfigurations.h b/src/plugins/android/androidconfigurations.h index cf324cdcfb5..c63da2c34b8 100644 --- a/src/plugins/android/androidconfigurations.h +++ b/src/plugins/android/androidconfigurations.h @@ -128,8 +128,8 @@ public: QVersionNumber ndkVersion(const QtSupport::BaseQtVersion *qtVersion) const; QVersionNumber ndkVersion(const Utils::FilePath &ndkPath) const; - QUrl sdkToolsUrl() const { return m_sdkToolsUrl; }; - QByteArray getSdkToolsSha256() const { return m_sdkToolsSha256; }; + QUrl sdkToolsUrl() const { return m_sdkToolsUrl; } + QByteArray getSdkToolsSha256() const { return m_sdkToolsSha256; } QString ndkPathFromQtVersion(const QtSupport::BaseQtVersion &version) const; QStringList defaultEssentials() const; @@ -188,8 +188,8 @@ public: bool useNativeUiTools() const; - bool sdkFullyConfigured() const { return m_sdkFullyConfigured; }; - void setSdkFullyConfigured(bool allEssentialsInstalled) { m_sdkFullyConfigured = allEssentialsInstalled; }; + bool sdkFullyConfigured() const { return m_sdkFullyConfigured; } + void setSdkFullyConfigured(bool allEssentialsInstalled) { m_sdkFullyConfigured = allEssentialsInstalled; } bool isValidNdk(const QString &ndkLocation) const; QStringList getCustomNdkList() const;