File tree 1 file changed +7
-5
lines changed
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -19,16 +19,18 @@ performance::performance() : interface("Performance Measurement Options") {
19
19
boost::program_options::bool_switch (&run),
20
20
" Run performance checks" );
21
21
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)" );
26
27
}
27
28
28
29
std::ostream& performance::print_impl (std::ostream& out) const {
29
30
30
31
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" );
32
34
return out;
33
35
}
34
36
You can’t perform that action at this time.
0 commit comments