Fixed a warning caused by an implicit narrowing cast.
diff --git a/src/benchmark.cc b/src/benchmark.cc
index 35b5e2d..3ee9c25 100644
--- a/src/benchmark.cc
+++ b/src/benchmark.cc
@@ -660,7 +660,7 @@
             thread.join();
         }
         for (std::size_t ti = 0; ti < pool.size(); ++ti) {
-            pool[ti] = std::thread(&RunInThread, &b, iters, ti, &total);
+            pool[ti] = std::thread(&RunInThread, &b, iters, static_cast<int>(ti), &total);
         }
       } else {
         // Run directly in this thread