Skip to content

Commit f89adef

Browse files
committed
Running astyle [ci skip]
1 parent 2e8f0b9 commit f89adef

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/tokenlist.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ static bool iscast(const Token *tok)
518518

519519
static 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, ".")) {

0 commit comments

Comments
 (0)