LibRegex: Use unchecked_empend() where possible

This commit is contained in:
Tim Ledbetter 2025-11-26 08:29:36 +00:00 committed by Tim Ledbetter
parent c1742fa989
commit 061b457bac
Notes: github-actions[bot] 2025-11-26 14:35:28 +00:00
2 changed files with 2 additions and 2 deletions

View file

@ -497,7 +497,7 @@ ALWAYS_INLINE ExecutionResult OpCode_Compare::execute(MatchInput const& input, M
};
Vector<DisjunctionState, 4> disjunction_states;
disjunction_states.empend();
disjunction_states.unchecked_empend();
auto current_disjunction_state = [&]() -> DisjunctionState& { return disjunction_states.last(); };