Skip to content

Commit

Permalink
Fix trailing comma in CSV output
Browse files Browse the repository at this point in the history
  • Loading branch information
tomdeakin committed Oct 4, 2018
1 parent a1f7b94 commit 02bcd9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ void run()
<< 1.0E-6 * sizes[i] / (*minmax.first) << csv_separator
<< *minmax.first << csv_separator
<< *minmax.second << csv_separator
<< average << csv_separator
<< average
<< std::endl;
}
else
Expand Down

0 comments on commit 02bcd9b

Please sign in to comment.