Skip to content

Commit

Permalink
Merge pull request #209 from ncave/main
Browse files Browse the repository at this point in the history
Fixed #208
  • Loading branch information
emeryberger authored Nov 28, 2022
2 parents 79f4ee1 + e0629fe commit 0067ae7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libcoz/progress_point.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class throughput_point {
class saved;

/// Create a throughput progress point with a given name
throughput_point(const std::string& name) : _name(name) {}
throughput_point(const std::string& name) : _name(name), _counter() {}

/// Save the state of this progress point
saved* save() const {
Expand Down Expand Up @@ -97,7 +97,7 @@ class latency_point {
class saved;

/// Create a latency progress point with a given name
latency_point(const std::string& name) : _name(name) {}
latency_point(const std::string& name) : _name(name), _begin_counter(), _end_counter() {}

/// Save the state of this progress point
saved* save() const {
Expand Down

0 comments on commit 0067ae7

Please sign in to comment.