diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/scanner.l | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/src/scanner.l b/src/scanner.l index 5a1f306..113ef03 100644 --- a/src/scanner.l +++ b/src/scanner.l @@ -5776,21 +5776,7 @@ OPERATOR "operator"{B}*({ARITHOP}|{ASSIGNOP}|{LOGICOP}|{BITOP}) *specName += *yytext; if (roundCount==0 && --sharpCount<=0) { - if (1 /*!insideCS*/) - { - 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); - } + baseName+=removeRedundantWhiteSpace(*specName); BEGIN(lastSkipSharpContext); } } |