Skip to content

Commit

Permalink
Fix feature check for benchmark svg output
Browse files Browse the repository at this point in the history
  • Loading branch information
ogxd committed Aug 1, 2024
1 parent ba56503 commit d6c84fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benches/throughput/result_processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ impl ResultProcessor for OutputPlot {

fn finish(&self) {
let mut arch = std::env::consts::ARCH.to_string();
if cfg!(hybrid) {
if cfg!(feature = "hybrid") {
arch += "-hybrid";
}
let file_name = format!("benches/throughput/{}.svg", arch);
Expand Down

0 comments on commit d6c84fc

Please sign in to comment.