diff options
| author | bors <bors@rust-lang.org> | 2023-05-24 11:13:52 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-05-24 11:13:52 +0000 |
| commit | 2df56cadcb3496c8e076c91c3518cf55df4d7de1 (patch) | |
| tree | e580bef5a621ff3236b6926aa919cab28b6a7821 /crates/parser/src/parser.rs | |
| parent | 1d1a1195f39b973e7bf64fff853826c28838917f (diff) | |
| parent | 541183676781c8633ef6a2ed3d2847367acf6c5b (diff) | |
| download | rust-2df56cadcb3496c8e076c91c3518cf55df4d7de1.tar.gz rust-2df56cadcb3496c8e076c91c3518cf55df4d7de1.zip | |
Auto merge of #14755 - poliorcetics:clippy-fixes, r=Veykril
Fix: a TODO and some clippy fixes - fix(todo): implement IntoIterator for ArenaMap<IDX, V> - chore: remove unused method - fix: remove useless `return`s - fix: various clippy lints - fix: simplify boolean test to a single negation
Diffstat (limited to 'crates/parser/src/parser.rs')
| -rw-r--r-- | crates/parser/src/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/parser/src/parser.rs b/crates/parser/src/parser.rs index 280416ae7c9..ef413c63754 100644 --- a/crates/parser/src/parser.rs +++ b/crates/parser/src/parser.rs @@ -205,7 +205,7 @@ impl<'t> Parser<'t> { marker.bomb.defuse(); marker = new_marker; }; - self.pos += 1 as usize; + self.pos += 1; self.push_event(Event::FloatSplitHack { ends_in_dot }); (ends_in_dot, marker) } |
