Skip to content

update readme

update readme #184

GitHub Actions / clippy succeeded Nov 26, 2023 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.73.0 (cc66ad468 2023-10-03)
  • cargo 1.73.0 (9c4383fb5 2023-08-26)
  • clippy 0.1.73 (cc66ad4 2023-10-03)

Annotations

Check warning on line 84 in mfm_machine/src/state_machine/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused `std::result::Result` that must be used

warning: unused `std::result::Result` that must be used
  --> mfm_machine/src/state_machine/mod.rs:81:9
   |
81 | /         tracker.track(
82 | |             Index::new(state_index, state.label(), state.tags()),
83 | |             context.clone(),
84 | |         );
   | |_________^
   |
   = note: this `Result` may be an `Err` variant, which should be handled
   = note: `#[warn(unused_must_use)]` on by default
help: use `let _ = ...` to ignore the resulting value
   |
81 |         let _ = tracker.track(
   |         +++++++