diff options
| author | gingerBill <bill@gingerbill.org> | 2022-08-11 13:01:54 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2022-08-11 13:01:54 +0100 |
| commit | 38102f14c19f83ef1e0c13a824448bab4e80877e (patch) | |
| tree | 15aa1dcfeb2a8e427bf6859f4b10848be2d19bff /src/parser.hpp | |
| parent | 0997df4fcf735830ee6a03867712ce89aa4255e1 (diff) | |
Add `#load(path) or_else default` in favour of `#load_or(path, default)`
Diffstat (limited to 'src/parser.hpp')
| -rw-r--r-- | src/parser.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/parser.hpp b/src/parser.hpp index bfdae58a5..7433744e6 100644 --- a/src/parser.hpp +++ b/src/parser.hpp @@ -282,7 +282,8 @@ enum StateFlag : u8 { StateFlag_type_assert = 1<<2, StateFlag_no_type_assert = 1<<3, - StateFlag_SelectorCallExpr = 1<<6, + StateFlag_SelectorCallExpr = 1<<5, + StateFlag_DirectiveWasFalse = 1<<6, StateFlag_BeenHandled = 1<<7, }; |