Skip to content

cursor_remaining was stabilized #1884

cursor_remaining was stabilized

cursor_remaining was stabilized #1884

GitHub Actions / clippy succeeded Aug 6, 2024 in 0s

clippy

1 warning

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 1
Note 0
Help 0

Versions

  • rustc 1.82.0-nightly (e57f3090a 2024-08-05)
  • cargo 1.82.0-nightly (fa6465836 2024-08-02)
  • clippy 0.1.82 (e57f309 2024-08-05)

Annotations

Check warning on line 9 in azalea/build.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unneeded `return` statement

warning: unneeded `return` statement
 --> azalea/build.rs:9:18
  |
9 |         Ok(_) => return, // nightly
  |                  ^^^^^^
  |
  = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
  = note: `#[warn(clippy::needless_return)]` on by default
help: replace `return` with a unit value
  |
9 |         Ok(_) => (), // nightly
  |                  ~~