Skip to content

🛠️ refactor: move disassemble into heimdall_core and treat like other libs #88

🛠️ refactor: move disassemble into heimdall_core and treat like other libs

🛠️ refactor: move disassemble into heimdall_core and treat like other libs #88

Triggered via pull request November 4, 2023 20:20
Status Success
Total duration 1m 33s
Artifacts
This run and associated checks have been archived and are scheduled for deletion. Learn more about checks retention

clippy.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

1 warning
clippy: core/src/decompile/out/solidity.rs#L25
[clippy] reported by reviewdog 🐶 <pre><code>warning: writing `&Vec` instead of `&[_]` involves a new object where a slice will do --> core/src/decompile/out/solidity.rs:25:10 | 25 | abi: &Vec<ABIStructure>, | ^^^^^^^^^^^^^^^^^^ help: change this to: `&[ABIStructure]` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ptr_arg = note: `#[warn(clippy::ptr_arg)]` on by default </code></pre> Raw Output: core/src/decompile/out/solidity.rs:25:10:w: <pre><code>warning: writing `&Vec` instead of `&[_]` involves a new object where a slice will do --> core/src/decompile/out/solidity.rs:25:10 | 25 | abi: &Vec<ABIStructure>, | ^^^^^^^^^^^^^^^^^^ help: change this to: `&[ABIStructure]` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#ptr_arg = note: `#[warn(clippy::ptr_arg)]` on by default </code></pre> __END__