File tree 1 file changed +3
-3
lines changed
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[])
517
517
{
518
518
if (++i >= argc)
519
519
{
520
- std::cerr << " Expected benchmark order after --order. Options: \" classic \" (default), \" isolated \" ."
520
+ std::cerr << " Expected benchmark order after --order. Options: \" Classic \" (default), \" Isolated \" ."
521
521
<< std::endl;
522
522
exit (EXIT_FAILURE);
523
523
}
524
524
auto key = std::string (argv[i]);
525
- if (key == " isolated " )
525
+ if (key == " Isolated " )
526
526
{
527
527
order = BenchOrder::Isolated;
528
528
}
@@ -573,7 +573,7 @@ void parseArguments(int argc, char *argv[])
573
573
std::cout << " --float Use floats (rather than doubles)" << std::endl;
574
574
std::cout << " -o --only NAME Only run one benchmark (see --print-names)" << std::endl;
575
575
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;
577
577
std::cout << " --csv Output as csv table" << std::endl;
578
578
std::cout << " --megabytes Use MB=10^6 for bandwidth calculation (default)" << std::endl;
579
579
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