We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db65fb3 commit ac53ae9Copy full SHA for ac53ae9
1 file changed
lib/astutils.cpp
@@ -2466,17 +2466,6 @@ static bool isTrivialConstructor(const Token* tok)
2466
return false;
2467
}
2468
2469
-static bool isArray(const Token* tok)
2470
-{
2471
- if (!tok)
2472
- return false;
2473
- if (tok->variable())
2474
- return tok->variable()->isArray();
2475
- if (Token::simpleMatch(tok, "."))
2476
- return isArray(tok->astOperand2());
2477
2478
-}
2479
-
2480
bool isMutableExpression(const Token* tok)
2481
{
2482
if (!tok)
0 commit comments