Skip to content

Commit

Permalink
Fix missing initialization of OverDeclaration::overnext.
Browse files Browse the repository at this point in the history
  • Loading branch information
kinke committed Apr 19, 2015
1 parent c46be67 commit b5c168c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/declaration.c
Expand Up @@ -617,6 +617,7 @@ Dsymbol *AliasDeclaration::toAlias()
OverDeclaration::OverDeclaration(Dsymbol *s, bool hasOverloads)
: Declaration(s->ident)
{
this->overnext = NULL;
this->aliassym = s;

this->hasOverloads = hasOverloads;
Expand Down

0 comments on commit b5c168c

Please sign in to comment.