Commit bfb4ae4c authored by Dimitri van Heesch's avatar Dimitri van Heesch

Bug 709921 - position of linebreak in template argument list affects inheritance relation

parent 316f0d0c
...@@ -5776,21 +5776,7 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP}) ...@@ -5776,21 +5776,7 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP})
*specName += *yytext; *specName += *yytext;
if (roundCount==0 && --sharpCount<=0) if (roundCount==0 && --sharpCount<=0)
{ {
if (1 /*!insideCS*/) baseName+=removeRedundantWhiteSpace(*specName);
{
baseName+=*specName;
}
else
{
if (current->tArgLists==0)
{
current->tArgLists = new QList<ArgumentList>;
current->tArgLists->setAutoDelete(TRUE);
}
ArgumentList *al = new ArgumentList;
current->tArgLists->append(al);
stringToArgumentList(*specName,al);
}
BEGIN(lastSkipSharpContext); BEGIN(lastSkipSharpContext);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment