Resolve semicolon_if_nothing_returned clippy lints

error: consider adding a `;` to the last statement for consistent formatting
       --> src/map.rs:55:9
        |
    55  |         self.map.clear()
        |         ^^^^^^^^^^^^^^^^ help: add a `;` here: `self.map.clear();`
        |
    note: the lint level is defined here
       --> src/lib.rs:304:22
        |
    304 | #![deny(clippy::all, clippy::pedantic)]
        |                      ^^^^^^^^^^^^^^^^
        = note: `#[deny(clippy::semicolon_if_nothing_returned)]` implied by `#[deny(clippy::pedantic)]`
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#semicolon_if_nothing_returned

    error: consider adding a `;` to the last statement for consistent formatting
       --> src/read.rs:719:9
        |
    719 |         R::discard(self)
        |         ^^^^^^^^^^^^^^^^ help: add a `;` here: `R::discard(self);`
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#semicolon_if_nothing_returned

    error: consider adding a `;` to the last statement for consistent formatting
       --> src/read.rs:769:9
        |
    769 |         R::set_failed(self, failed)
        |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: add a `;` here: `R::set_failed(self, failed);`
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#semicolon_if_nothing_returned
This commit is contained in:
David Tolnay 2021-06-04 20:52:01 -07:00
parent e4057c7d1f
commit df1fb717ba
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82
2 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ impl Map<String, Value> {
/// Clears the map, removing all values.
#[inline]
pub fn clear(&mut self) {
self.map.clear()
self.map.clear();
}
/// Returns a reference to the value corresponding to the key.

View File

@ -716,7 +716,7 @@ where
}
fn discard(&mut self) {
R::discard(self)
R::discard(self);
}
fn position(&self) -> Position {
@ -766,7 +766,7 @@ where
const should_early_return_if_failed: bool = R::should_early_return_if_failed;
fn set_failed(&mut self, failed: &mut bool) {
R::set_failed(self, failed)
R::set_failed(self, failed);
}
}