38qsizetype Parameter::nameInsertionPoint()
const
40 static const QRegularExpression insideOutDeclarator(
41 QStringLiteral(R"((\([^)]*[&*]\))\s*(\[|\())"));
42 auto match = insideOutDeclarator.match(m_type);
44 return match.capturedStart(1) + match.capturedLength(1) - 1;