aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/messages.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2022-11-11 18:22:29 +0100
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2022-11-14 12:16:43 +0100
commit33e75541a7a29fb38fe9a463760b86bfc055031a (patch)
treedf7656699a4df22645d2c210e3875d54cc082275 /sources/shiboken6/ApiExtractor/messages.cpp
parent1e47cdbd77ed2c95f520aaa8b856bb05f4076a89 (diff)
shiboken6: Fix coding style regarding pointers (Type* v -> Type *v)
As a drive-by, introduce some auto and streamline the code. Pick-to: 6.4 Change-Id: If84a3721a50b2e00b473ba78cba184f1a35d326b Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Cristian Maureira-Fredes <cristian.maureira-fredes@qt.io>
Diffstat (limited to 'sources/shiboken6/ApiExtractor/messages.cpp')
-rw-r--r--sources/shiboken6/ApiExtractor/messages.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/shiboken6/ApiExtractor/messages.cpp b/sources/shiboken6/ApiExtractor/messages.cpp
index 2fb16e671..06c10a49b 100644
--- a/sources/shiboken6/ApiExtractor/messages.cpp
+++ b/sources/shiboken6/ApiExtractor/messages.cpp
@@ -759,7 +759,7 @@ QString msgEnclosingClassNotFound(const TypeEntry *t)
return result;
}
-QString msgUnknownOperator(const AbstractMetaFunction* func)
+QString msgUnknownOperator(const AbstractMetaFunction *func)
{
QString result = u"Unknown operator: \""_s + func->originalName()
+ u'"';