Skip to content

Commit

Permalink
Merge pull request #3196 from yebblies/deadcomment
Browse files Browse the repository at this point in the history
[DDMD] [trivial] Remove commented code inside an argument list
  • Loading branch information
AndrejMitrovic committed Feb 3, 2014
2 parents a9ddb31 + d6b1bc3 commit ff122e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/expression.c
Expand Up @@ -7457,7 +7457,7 @@ Expression *DotIdExp::semanticX(Scope *sc)
(*exps)[i] = e;
}
// Don't evaluate te->e0 in runtime
Expression *e = new TupleExp(loc, /*te->e0*/NULL, exps);
Expression *e = new TupleExp(loc, NULL, exps);
e = e->semantic(sc);
return e;
}
Expand Down

0 comments on commit ff122e7

Please sign in to comment.