summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/moc/single_function_keyword.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/tools/moc/single_function_keyword.h')
-rw-r--r--tests/auto/tools/moc/single_function_keyword.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/tests/auto/tools/moc/single_function_keyword.h b/tests/auto/tools/moc/single_function_keyword.h
index fc65561d72..28fd9ab90a 100644
--- a/tests/auto/tools/moc/single_function_keyword.h
+++ b/tests/auto/tools/moc/single_function_keyword.h
@@ -1,5 +1,5 @@
// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#ifndef SINGLE_FUNCTION_KEYWORD_H
#define SINGLE_FUNCTION_KEYWORD_H
@@ -22,10 +22,7 @@ class SingleFunctionKeywordBeforeInline : public QObject
public:
inline SingleFunctionKeywordBeforeInline() {}
-QT_WARNING_PUSH
-QT_WARNING_DISABLE_CLANG("-Wundefined-inline")
Q_SIGNAL inline void mySignal();
-QT_WARNING_POP
Q_SLOT inline void mySlot() { emit mySignal(); }
};
@@ -36,10 +33,7 @@ class SingleFunctionKeywordAfterInline : public QObject
public:
inline SingleFunctionKeywordAfterInline() {}
-QT_WARNING_PUSH
-QT_WARNING_DISABLE_CLANG("-Wundefined-inline")
inline Q_SIGNAL void mySignal();
-QT_WARNING_POP
inline Q_SLOT void mySlot() { emit mySignal(); }
};