rename parameter

This commit is contained in:
Daniel Marjamäki 2019-05-04 10:36:49 +02:00
parent 5e9b7a6749
commit 604a13a22b
1 changed files with 1 additions and 1 deletions

View File

@ -363,7 +363,7 @@ struct AST_state {
bool cpp;
unsigned int assign;
bool inCase; // true from case to :
explicit AST_state(bool cpp_) : depth(0), inArrayAssignment(0), cpp(cpp_), assign(0U), inCase(false) {}
explicit AST_state(bool cpp) : depth(0), inArrayAssignment(0), cpp(cpp), assign(0U), inCase(false) {}
};
static Token * skipDecl(Token *tok)