Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(volo-build): not add vologen prefix for method arguments type with rust type kind #520

Merged
merged 4 commits into from
Nov 5, 2024

chore: rebase to main

2956e5d
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

fix(volo-build): not add vologen prefix for method arguments type with rust type kind #520

chore: rebase to main
2956e5d
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Nov 5, 2024 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.84.0-nightly (fbab78289 2024-11-04)
  • cargo 1.84.0-nightly (031049782 2024-11-01)
  • clippy 0.1.84 (fbab78289d 2024-11-04)

Annotations

Check warning on line 62 in benchmark/src/perf/mem.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

casting to the same type is unnecessary (`u64` -> `u64`)

warning: casting to the same type is unnecessary (`u64` -> `u64`)
  --> benchmark/src/perf/mem.rs:62:41
   |
62 |                     mem_usage_list.push(mem_usage as u64);
   |                                         ^^^^^^^^^^^^^^^^ help: try: `mem_usage`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_cast
   = note: `#[warn(clippy::unnecessary_cast)]` on by default