aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/abstractmetatype.cpp
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@qt.io>2023-05-08 09:47:23 +0200
committerFriedemann Kleint <Friedemann.Kleint@qt.io>2023-05-11 11:46:34 +0200
commit17ef62122f31264942b3799fd502bcbac39fcc1b (patch)
tree54a1bc99b6be664cfe7da912358040495e69fb21 /sources/shiboken6/ApiExtractor/abstractmetatype.cpp
parent3965de109132cafcb4f5c23fdc1c24a7baec9574 (diff)
shiboken6: Correctly register smartpointer signatures
Drop the space before the closing bracket (no longer required in C++) which is causing signatures mismatches when using it signals. Pick-to: 6.5 Task-number: PYSIDE-2316 Change-Id: Ia460a0868454cc7a2a41e82ef921e50a40fcc45d 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/abstractmetatype.cpp')
-rw-r--r--sources/shiboken6/ApiExtractor/abstractmetatype.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/shiboken6/ApiExtractor/abstractmetatype.cpp b/sources/shiboken6/ApiExtractor/abstractmetatype.cpp
index 21455c7ff..5ee6225ff 100644
--- a/sources/shiboken6/ApiExtractor/abstractmetatype.cpp
+++ b/sources/shiboken6/ApiExtractor/abstractmetatype.cpp
@@ -619,7 +619,7 @@ QString AbstractMetaTypeData::formatSignature(bool minimal) const
result += u',';
result += m_instantiations.at(i).minimalSignature();
}
- result += u" >"_s;
+ result += u'>';
}
if (!minimal && (!m_indirections.isEmpty() || m_referenceType != NoReference))