From 1067eed52a8a1a93581744a5c9d4fc9f8a7d3661 Mon Sep 17 00:00:00 2001 From: Ilya Pominov Date: Tue, 22 Feb 2022 02:37:08 +0300 Subject: Remove warning from kauthorized.h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Macros Q_NAMESPACE_EXPORT should be used without semicolon https://doc.qt.io/qt-5/qobject.html#Q_NAMESPACE_EXPORT This generates warning: extra ‘;’ [-Wpedantic] --- src/core/kauthorized.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/kauthorized.h b/src/core/kauthorized.h index 071e0cb2..0571c111 100644 --- a/src/core/kauthorized.h +++ b/src/core/kauthorized.h @@ -28,7 +28,7 @@ class QString; */ namespace KAuthorized { -Q_NAMESPACE_EXPORT(KCONFIGCORE_EXPORT); +Q_NAMESPACE_EXPORT(KCONFIGCORE_EXPORT) /** * The enum values lower cased represent the action that is authorized -- cgit v1.2.1