File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -517,12 +517,12 @@ void parseArguments(int argc, char *argv[])
517517 {
518518 if (++i >= argc)
519519 {
520- std::cerr << " Expected benchmark order after --order. Options: \" classic \" (default), \" isolated \" ."
520+ std::cerr << " Expected benchmark order after --order. Options: \" Classic \" (default), \" Isolated \" ."
521521 << std::endl;
522522 exit (EXIT_FAILURE);
523523 }
524524 auto key = std::string (argv[i]);
525- if (key == " isolated " )
525+ if (key == " Isolated " )
526526 {
527527 order = BenchOrder::Isolated;
528528 }
@@ -573,7 +573,7 @@ void parseArguments(int argc, char *argv[])
573573 std::cout << " --float Use floats (rather than doubles)" << std::endl;
574574 std::cout << " -o --only NAME Only run one benchmark (see --print-names)" << std::endl;
575575 std::cout << " --print-names Prints all available benchmark names" << std::endl;
576- std::cout << " --order Benchmark run order: \" classic \" (default) or \" isolated \" ." << std::endl;
576+ std::cout << " --order Benchmark run order: \" Classic \" (default) or \" Isolated \" ." << std::endl;
577577 std::cout << " --csv Output as csv table" << std::endl;
578578 std::cout << " --megabytes Use MB=10^6 for bandwidth calculation (default)" << std::endl;
579579 std::cout << " --mibibytes Use MiB=2^20 for bandwidth calculation (default MB=10^6)" << std::endl;
You can’t perform that action at this time.
0 commit comments