Skip to content

Commit

Permalink
fix uninitialized field
Browse files Browse the repository at this point in the history
  • Loading branch information
WalterBright committed Mar 4, 2012
1 parent 2e523c4 commit 3a523fd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/scope.c
Expand Up @@ -123,6 +123,7 @@ Scope::Scope(Scope *enclosing)
this->noaccesscheck = enclosing->noaccesscheck;
this->mustsemantic = enclosing->mustsemantic;
this->intypeof = enclosing->intypeof;
this->speculative = enclosing->speculative;
this->parameterSpecialization = enclosing->parameterSpecialization;
this->callSuper = enclosing->callSuper;
this->flags = 0;
Expand Down

0 comments on commit 3a523fd

Please sign in to comment.