Showing with 1 addition and 1 deletion.
  1. +1 −1 src/expression.h
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