Skip to content

Commit 1174c5f

Browse files
committed
Resolve unnecessary_semicolon pedantic clippy lint
warning: unnecessary semicolon --> src/de.rs:371:10 | 371 | }; | ^ help: remove | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_semicolon = note: `-W clippy::unnecessary-semicolon` implied by `-W clippy::pedantic` = help: to override `-W clippy::pedantic` add `#[allow(clippy::unnecessary_semicolon)]`
1 parent c916099 commit 1174c5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/de.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ impl<'de, R: Read<'de>> Deserializer<R> {
368368
None => {
369369
return Err(self.peek_error(ErrorCode::EofWhileParsingValue));
370370
}
371-
};
371+
}
372372

373373
tri!(self.scan_integer128(&mut buf));
374374

0 commit comments

Comments
 (0)