From 8d4be0361ee39efdb47ba6bf2e4ef6803978b2e9 Mon Sep 17 00:00:00 2001 From: Roman Date: Mon, 2 Apr 2018 19:00:14 +0300 Subject: [PATCH] Fix unused variable in tokio-threadpool\tests\threadpool.rs:581:9 (#284) --- tokio-threadpool/tests/threadpool.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio-threadpool/tests/threadpool.rs b/tokio-threadpool/tests/threadpool.rs index 24eaf6337..0afd8a1c9 100644 --- a/tokio-threadpool/tests/threadpool.rs +++ b/tokio-threadpool/tests/threadpool.rs @@ -578,7 +578,7 @@ fn hammer() { } } - for i in 0.. ITER { + for _ in 0.. ITER { let pool = Builder::new() // .pool_size(30) .build();