Skip to content

Commit 9664ff5

Browse files
committed
fix clippy
1 parent 6e2a1b9 commit 9664ff5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

performance_measurement/src/profiler.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ pub struct PerformanceProfiler;
3636

3737
impl PerformanceProfiler {
3838
pub fn store_measurement(function_name: &'static str, duration: Duration) {
39-
let mut global_performance_measurements = &GLOBAL_PERFORMANCE_MEASUREMENTS;
39+
let global_performance_measurements = &GLOBAL_PERFORMANCE_MEASUREMENTS;
4040

4141
let duration_ms = duration.as_nanos() as f64 / 1_000_000.0;
4242

0 commit comments

Comments
 (0)