From 4b1318238b1b7544d1156e9525b85f654ba2dc2d Mon Sep 17 00:00:00 2001 From: Arsentiy Milchakov Date: Thu, 23 Mar 2017 14:50:19 +0300 Subject: review fixes --- openlr/openlr_stat/openlr_stat.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'openlr/openlr_stat') diff --git a/openlr/openlr_stat/openlr_stat.cpp b/openlr/openlr_stat/openlr_stat.cpp index 5823c5a492..f238f27210 100644 --- a/openlr/openlr_stat/openlr_stat.cpp +++ b/openlr/openlr_stat/openlr_stat.cpp @@ -108,14 +108,14 @@ int main(int argc, char * argv[]) classificator::Load(); - auto const num_threads = static_cast(FLAGS_num_threads); + auto const numThreads = static_cast(FLAGS_num_threads); - vector indexes(num_threads); + vector indexes(numThreads); LoadIndexes(FLAGS_mwms_path, indexes); OpenLRSimpleDecoder::SegmentsFilter filter(FLAGS_ids_path, FLAGS_multipoints_only); OpenLRSimpleDecoder decoder(FLAGS_input, indexes); - decoder.Decode(FLAGS_output, FLAGS_limit, filter, num_threads); + decoder.Decode(FLAGS_output, FLAGS_limit, filter, numThreads); return 0; } -- cgit v1.2.3