Repository: incubator-quickstep Updated Branches: refs/heads/pedantic-warning 0ef873b80 -> f42c726de (forced update)
Fixed a sign compare warning. Project: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/commit/46f916f6 Tree: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/tree/46f916f6 Diff: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/diff/46f916f6 Branch: refs/heads/pedantic-warning Commit: 46f916f6feec3076288e750ebf83dd19c1ec33ad Parents: b9016a8 Author: Zuyu Zhang <zu...@apache.org> Authored: Tue Mar 21 17:38:35 2017 -0700 Committer: Zuyu Zhang <zu...@apache.org> Committed: Tue Mar 21 17:38:35 2017 -0700 ---------------------------------------------------------------------- cli/distributed/Executor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/46f916f6/cli/distributed/Executor.cpp ---------------------------------------------------------------------- diff --git a/cli/distributed/Executor.cpp b/cli/distributed/Executor.cpp index 1415e99..4ca5693 100644 --- a/cli/distributed/Executor.cpp +++ b/cli/distributed/Executor.cpp @@ -65,7 +65,7 @@ void Executor::init() { const vector<numa_node_id> worker_numa_nodes(FLAGS_num_workers, kAnyNUMANodeID); vector<client_id> worker_client_ids; - for (std::size_t worker_thread_index = 0; + for (int worker_thread_index = 0; worker_thread_index < FLAGS_num_workers; ++worker_thread_index) { workers_.push_back(make_unique<Worker>(worker_thread_index, &bus_local_,