We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e2a1b9 commit 9664ff5Copy full SHA for 9664ff5
performance_measurement/src/profiler.rs
@@ -36,7 +36,7 @@ pub struct PerformanceProfiler;
36
37
impl PerformanceProfiler {
38
pub fn store_measurement(function_name: &'static str, duration: Duration) {
39
- let mut global_performance_measurements = &GLOBAL_PERFORMANCE_MEASUREMENTS;
+ let global_performance_measurements = &GLOBAL_PERFORMANCE_MEASUREMENTS;
40
41
let duration_ms = duration.as_nanos() as f64 / 1_000_000.0;
42
0 commit comments