Commit 7fd0a592 authored by Ilya Maykov's avatar Ilya Maykov Committed by Facebook GitHub Bot

fix formatting of folly benchmarks when --bm_relative_to flag is given

Summary: There was a missing newline separator

Reviewed By: yfeldblum

Differential Revision: D28781619

fbshipit-source-id: d20b26d67e427cf8760d21118e53a44ec6109771
parent 3faf3ec0
...@@ -426,7 +426,7 @@ void printResultComparison( ...@@ -426,7 +426,7 @@ void printResultComparison(
// Print header for a file // Print header for a file
auto header = [&](const string& file) { auto header = [&](const string& file) {
separator('='); separator('=');
printf("%-*srelative time/iter iters/s", columns - 28, file.c_str()); printf("%-*srelative time/iter iters/s\n", columns - 28, file.c_str());
separator('='); separator('=');
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment