Make options redef-able by default.

This commit is contained in:
Johanna Amann 2018-08-10 11:45:37 -07:00
parent 26ea1999ec
commit c34fbee0d1
4 changed files with 22 additions and 1 deletions

View file

@ -60,7 +60,7 @@ public:
void SetConst() { is_const = true; }
bool IsConst() const { return is_const; }
void SetOption() { is_option = true; }
void SetOption();
bool IsOption() const { return is_option; }
void SetEnumConst() { is_enum_const = true; }