diff options
Diffstat (limited to 'sources/shiboken6/ApiExtractor/modifications.cpp')
| -rw-r--r-- | sources/shiboken6/ApiExtractor/modifications.cpp | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/sources/shiboken6/ApiExtractor/modifications.cpp b/sources/shiboken6/ApiExtractor/modifications.cpp index 3f8b1e71f..625ae3f4e 100644 --- a/sources/shiboken6/ApiExtractor/modifications.cpp +++ b/sources/shiboken6/ApiExtractor/modifications.cpp @@ -381,14 +381,7 @@ QDebug operator<<(QDebug d, const CodeSnip &s) d << lines.at(i).trimmed(); } } - d << '"'; - if (!s.argumentMap.isEmpty()) { - d << ", argumentMap{"; - for (auto it = s.argumentMap.cbegin(), end = s.argumentMap.cend(); it != end; ++it) - d << it.key() << "->\"" << it.value() << '"'; - d << '}'; - } - d << ')'; + d << "\")"; return d; } @@ -409,8 +402,6 @@ void FunctionModification::formatDebug(QDebug &d) const d << "signature=\"" << m_signature; d << "\", "; Modification::formatDebug(d); - if (!association.isEmpty()) - d << ", association=\"" << association << '"'; if (m_allowThread != TypeSystem::AllowThread::Unspecified) d << ", allowThread=" << int(m_allowThread); if (m_thread) |
