From f89adef1c1eaaeedc6b49e434ecc7481eee8f152 Mon Sep 17 00:00:00 2001 From: orbitcowboy Date: Wed, 11 Dec 2019 15:01:21 +0100 Subject: [PATCH] Running astyle [ci skip] --- lib/tokenlist.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/tokenlist.cpp b/lib/tokenlist.cpp index 06183a2a1..34a6b8640 100644 --- a/lib/tokenlist.cpp +++ b/lib/tokenlist.cpp @@ -518,7 +518,7 @@ static bool iscast(const Token *tok) static const Token* findTypeEnd(const Token* tok) { - while(Token::Match(tok, "%name%|.|::|<|(|template|decltype|sizeof")) { + while (Token::Match(tok, "%name%|.|::|<|(|template|decltype|sizeof")) { if (Token::Match(tok, "(|<")) tok = tok->link(); if (!tok) @@ -543,7 +543,7 @@ static const Token * findLambdaEndScope(const Token *tok) if (!Token::simpleMatch(tok, ")")) return nullptr; tok = tok->next(); - while(Token::Match(tok, "mutable|constexpr|constval|noexcept|.")) { + while (Token::Match(tok, "mutable|constexpr|constval|noexcept|.")) { if (Token::simpleMatch(tok, "noexcept (")) tok = tok->linkAt(1); if (Token::simpleMatch(tok, ".")) {