feat(meta): overhaul github actions, templates #91
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__
|