Skip to content

WIP: sketch out on-disk hextree #243

WIP: sketch out on-disk hextree

WIP: sketch out on-disk hextree #243

GitHub Actions / clippy failed Jan 4, 2024 in 0s

clippy

1 error

Details

Results

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

Versions

  • rustc 1.74.1 (a28077b28 2023-12-04)
  • cargo 1.74.1 (ecb9851af 2023-10-18)
  • clippy 0.1.74 (a28077b 2023-12-04)

Annotations

Check failure on line 59 in src/disktree/tree.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

useless conversion to the same type: `disktree::dptr::Dptr`

error: useless conversion to the same type: `disktree::dptr::Dptr`
  --> src/disktree/tree.rs:59:30
   |
59 |             self.seek_to_pos(dptr.into())?;
   |                              ^^^^^^^^^^^ help: consider removing `.into()`: `dptr`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
   = note: `-D clippy::useless-conversion` implied by `-D clippy::all`
   = help: to override `-D clippy::all` add `#[allow(clippy::useless_conversion)]`