reformat to fix OCLint long line warning

This commit is contained in:
Dennis Luxen 2014-10-27 13:20:33 -04:00
parent 94288843f1
commit 4dbc1e0e96

View File

@ -69,7 +69,8 @@ void Benchmark(BenchStaticRTree &rtree, unsigned num_queries)
} }
TIMER_STOP(query_phantom); TIMER_STOP(query_phantom);
std::cout << "Took " << TIMER_MSEC(query_phantom) << " msec for " << num_queries << " queries." std::cout << "Took " << TIMER_MSEC(query_phantom) << " msec for " << num_queries
<< " queries."
<< "\n"; << "\n";
std::cout << TIMER_MSEC(query_phantom) / ((double)num_queries) << " msec/query." std::cout << TIMER_MSEC(query_phantom) / ((double)num_queries) << " msec/query."
<< "\n"; << "\n";
@ -108,7 +109,6 @@ void Benchmark(BenchStaticRTree &rtree, unsigned num_queries)
std::cout << TIMER_MSEC(query_phantomnode) / ((double)num_queries) << " msec/query." std::cout << TIMER_MSEC(query_phantomnode) / ((double)num_queries) << " msec/query."
<< "\n"; << "\n";
{ {
const unsigned num_results = 1; const unsigned num_results = 1;
std::cout << "#### IncrementalFindPhantomNodeForCoordinate : " << num_results std::cout << "#### IncrementalFindPhantomNodeForCoordinate : " << num_results
@ -128,7 +128,8 @@ void Benchmark(BenchStaticRTree &rtree, unsigned num_queries)
} }
TIMER_STOP(query_phantom); TIMER_STOP(query_phantom);
std::cout << "Took " << TIMER_MSEC(query_phantom) << " msec for " << num_queries << " queries." std::cout << "Took " << TIMER_MSEC(query_phantom) << " msec for " << num_queries
<< " queries."
<< "\n"; << "\n";
std::cout << TIMER_MSEC(query_phantom) / ((double)num_queries) << " msec/query." std::cout << TIMER_MSEC(query_phantom) / ((double)num_queries) << " msec/query."
<< "\n"; << "\n";
@ -136,7 +137,6 @@ void Benchmark(BenchStaticRTree &rtree, unsigned num_queries)
std::cout << "#### LocateClosestEndPointForCoordinate" std::cout << "#### LocateClosestEndPointForCoordinate"
<< "\n"; << "\n";
} }
} }
int main(int argc, char **argv) int main(int argc, char **argv)