From a812da2cf149659f36a8fe8818aeb970852d1db2 Mon Sep 17 00:00:00 2001 From: orbitcowboy Date: Mon, 17 Sep 2018 17:16:32 +0200 Subject: [PATCH] Formatted the code. --- lib/astutils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/astutils.cpp b/lib/astutils.cpp index f6dcccf5e..f98fe890b 100644 --- a/lib/astutils.cpp +++ b/lib/astutils.cpp @@ -225,7 +225,7 @@ static const Token * followVariableExpression(const Token * tok, bool cpp, const // Recognized as a variable but the declaration is unknown } else if (tok2->varId() > 0) { return tok; - } else if(tok2->tokType() == Token::eName && !Token::Match(tok2, "sizeof|decltype|typeof") && !tok2->function()) { + } else if (tok2->tokType() == Token::eName && !Token::Match(tok2, "sizeof|decltype|typeof") && !tok2->function()) { return tok; } }