Skip to content

Commit

Permalink
refac: cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
sayon committed Jan 6, 2025
1 parent 71e2b76 commit 1014e03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion benchmark_analyzer/src/model/context/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub fn validate_context(context: &Context) -> anyhow::Result<()> {
let Context {
machine,
toolchain,
target: _
target: _,
} = context;

if machine.is_empty() {
Expand Down
2 changes: 1 addition & 1 deletion benchmark_analyzer/src/output/format/json/lnt/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ impl IBenchmarkSerializer for JsonLNT {

let machine = Machine {
name: context.machine.clone(),
target: context.target.clone(),
target: context.target,
optimizations: optimizations.to_owned(),
toolchain: context.toolchain.clone(),
};
Expand Down

0 comments on commit 1014e03

Please sign in to comment.