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 6dfbe46 commit 9a6f84cCopy full SHA for 9a6f84c
stress/src/metrics_histogram.rs
@@ -48,7 +48,7 @@ thread_local! {
48
fn main() {
49
match std::env::args().find(|arg| arg == "--per-thread") {
50
None => throughput::test_throughput(test_histogram_shared),
51
- Some(_) => throughput::test_throughput(test_histogram_per_thread)
+ Some(_) => throughput::test_throughput(test_histogram_per_thread),
52
}
53
54
@@ -57,7 +57,7 @@ fn test_histogram_shared() {
57
58
59
fn test_histogram_per_thread() {
60
- HISTOGRAM_PER_THREAD.with(|h|test_histogram(h));
+ HISTOGRAM_PER_THREAD.with(|h| test_histogram(h));
61
62
63
fn test_histogram(histogram: &Histogram<u64>) {
0 commit comments