File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -518,7 +518,7 @@ static bool iscast(const Token *tok)
518518
519519static const Token* findTypeEnd (const Token* tok)
520520{
521- while (Token::Match (tok, " %name%|.|::|<|(|template|decltype|sizeof" )) {
521+ while (Token::Match (tok, " %name%|.|::|<|(|template|decltype|sizeof" )) {
522522 if (Token::Match (tok, " (|<" ))
523523 tok = tok->link ();
524524 if (!tok)
@@ -543,7 +543,7 @@ static const Token * findLambdaEndScope(const Token *tok)
543543 if (!Token::simpleMatch (tok, " )" ))
544544 return nullptr ;
545545 tok = tok->next ();
546- while (Token::Match (tok, " mutable|constexpr|constval|noexcept|." )) {
546+ while (Token::Match (tok, " mutable|constexpr|constval|noexcept|." )) {
547547 if (Token::simpleMatch (tok, " noexcept (" ))
548548 tok = tok->linkAt (1 );
549549 if (Token::simpleMatch (tok, " ." )) {
You can’t perform that action at this time.
0 commit comments