WIP: sketch out on-disk hextree #223
GitHub Actions / clippy
failed
Nov 2, 2023 in 0s
clippy
2 errors
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 2 |
Warning | 0 |
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 failure on line 154 in src/disktree/iter.rs
github-actions / clippy
casting to the same type is unnecessary (`u8` -> `u8`)
error: casting to the same type is unnecessary (`u8` -> `u8`)
--> src/disktree/iter.rs:154:46
|
154 | self.cell_stack.push(digit as u8);
| ^^^^^^^^^^^ help: try: `digit`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
Check failure on line 136 in src/disktree/iter.rs
github-actions / clippy
casting to the same type is unnecessary (`u8` -> `u8`)
error: casting to the same type is unnecessary (`u8` -> `u8`)
--> src/disktree/iter.rs:136:42
|
136 | self.cell_stack.push(digit as u8);
| ^^^^^^^^^^^ help: try: `digit`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
= note: `-D clippy::unnecessary-cast` implied by `-D clippy::all`
Loading