remove extra space after comma

release/4.3a0
Varun Agrawal 2024-12-24 12:02:43 -05:00
parent 1c80fa1768
commit 05e01b1b53
1 changed files with 2 additions and 2 deletions

View File

@ -114,7 +114,7 @@ void TimingOutline::print_csv_header(bool addLineBreak) const {
std::cout << label_ + " cpu time (s)" << "," << label_ + " #calls" << ","
<< label_ + " wall time(s)" << "," << label_ + " subtree time (s)"
<< "," << label_ + " min time (s)" << "," << label_ + "max time(s)"
<< ", ";
<< ",";
// Order children
typedef FastMap<size_t, std::shared_ptr<TimingOutline> > ChildOrder;
ChildOrder childOrder;
@ -138,7 +138,7 @@ void TimingOutline::print_csv(bool addLineBreak) const {
// Order is (CPU time, number of times, wall time, time + children in seconds,
// min time, max time)
std::cout << self() << "," << n_ << "," << wall() << "," << secs() << ","
<< min() << "," << max() << ", ";
<< min() << "," << max() << ",";
// Order children
typedef FastMap<size_t, std::shared_ptr<TimingOutline> > ChildOrder;
ChildOrder childOrder;