Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
berndpfrommer committed Sep 26, 2024
1 parent f18fdcb commit 28f224d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/profiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ std::ostream & operator<<(std::ostream & os, const Profiler & p)
int64_t dmin = (pt.count > 0) ? pt.min.count() : -1;
int64_t dmax = (pt.count > 0) ? pt.max.count() : -1;
os << std::setw(maxlen + 1) << std::left << it->first
<< "= tot: " << std::setw(9) << std::right << pt.duration.count()
<< "us per: " << dn << "+-" << static_cast<int>(stddev) << "(" << dmin
<< "-" << dmax << ")"
<< " count: " << pt.count << " " << std::endl;
<< "= tot: " << std::setw(9) << std::right << pt.duration.count();
os << "us per: " << dn << "+-" << static_cast<int>(stddev) << "(" << dmin;
os << "-" << dmax << ")";
os << " count: " << pt.count << " " << std::endl;
}
return os;
}
Expand Down

0 comments on commit 28f224d

Please sign in to comment.