Fix clippy warnings

This commit is contained in:
Max Brunsfeld 2024-04-11 16:29:59 -07:00
parent b8701fcf18
commit 1f0707e1ac
3 changed files with 4 additions and 9 deletions

View file

@ -95,7 +95,7 @@ pub fn build_lex_table(
let mut characters = CharacterSet::empty();
for (chars, action) in &state.advance_actions {
if action.in_main_token {
characters = characters.add(&chars);
characters = characters.add(chars);
continue;
}