Skip to content

Commit

Permalink
Merge pull request #4722 from WalterBright/explayout
Browse files Browse the repository at this point in the history
change layout to reduce memory consumption
  • Loading branch information
9rnsr committed Jun 5, 2015
2 parents 391d1e0 + 6fc4504 commit e8cc0de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/expression.h
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ class Expression : public RootObject
{
public:
Loc loc; // file location
TOK op; // handy to minimize use of dynamic_cast
Type *type; // !=NULL means that semantic() has been run
TOK op; // to minimize use of dynamic_cast
unsigned char size; // # of bytes in Expression so we can copy() it
unsigned char parens; // if this is a parenthesized expression

Expand Down

0 comments on commit e8cc0de

Please sign in to comment.