Skip to content

Commit

Permalink
Merge pull request #4641 from WalterBright/elimfalsewarning
Browse files Browse the repository at this point in the history
eliminate spurious warning about uninitialized v
  • Loading branch information
yebblies committed May 10, 2015
2 parents a7cf611 + 8e6fa97 commit b199e30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/expression.c
Original file line number Diff line number Diff line change
Expand Up @@ -9558,7 +9558,7 @@ Expression *DeleteExp::semantic(Scope *sc)
Expression *ea = NULL;
Expression *eb = NULL;
Expression *ec = NULL;
VarDeclaration *v;
VarDeclaration *v = NULL;

if (fd && f)
{ Identifier *id = Identifier::idPool("__tmpea");
Expand Down

0 comments on commit b199e30

Please sign in to comment.