Skip to content

Commit 05dd1cf

Browse files
committed
Fix performance format
1 parent aada982 commit 05dd1cf

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

examples/options/src/performance.cpp

+7-5
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,18 @@ performance::performance() : interface("Performance Measurement Options") {
1919
boost::program_options::bool_switch(&run),
2020
"Run performance checks");
2121

22-
m_desc.add_options()("print-performance",
23-
boost::program_options::bool_switch(&print_performance),
24-
"Print small performance metrics on the terminal "
25-
"(valid/duplicate/fake tracks statistics)");
22+
m_desc.add_options()(
23+
"print-performance",
24+
boost::program_options::bool_switch(&print_performance),
25+
"Print small performance metrics on the terminal "
26+
"(valid/duplicate/fake tracks statistics)");
2627
}
2728

2829
std::ostream& performance::print_impl(std::ostream& out) const {
2930

3031
out << " Run performance checks: " << (run ? "yes" : "no");
31-
out << " Print performance metrics: " << (print_performance ? "yes" : "no");
32+
out << " Print performance metrics: "
33+
<< (print_performance ? "yes" : "no");
3234
return out;
3335
}
3436

0 commit comments

Comments
 (0)