Fix order of operations in PropertyTableBuilder
This commit is contained in:
parent
277bf2f03d
commit
91fb64984f
1 changed files with 2 additions and 1 deletions
|
|
@ -348,7 +348,8 @@ struct PropertyTableBuilder {
|
|||
}
|
||||
}
|
||||
|
||||
result.states[state_id].default_next_state_id = add_state(default_next_item_set);
|
||||
StateId default_next_state_id = add_state(default_next_item_set);
|
||||
result.states[state_id].default_next_state_id = default_next_state_id;
|
||||
|
||||
// Sort the matching property sets by ascending specificity and by
|
||||
// their order in the sheet. This way, more specific selectors and later
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue