Skip to content

Commit

Permalink
review comment
Browse files Browse the repository at this point in the history
  • Loading branch information
lalitb committed Aug 15, 2022
1 parent a1a2634 commit 7a46d43
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sdk/test/metrics/meter_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ class MockMetricReader : public MetricReader
{
return AggregationTemporality::kCumulative;
}
virtual bool OnShutDown(std::chrono::microseconds timeout) noexcept override { return true; }
virtual bool OnForceFlush(std::chrono::microseconds timeout) noexcept override { return true; }
virtual void OnInitialized() noexcept override {}
bool OnShutDown(std::chrono::microseconds timeout) noexcept override { return true; }
bool OnForceFlush(std::chrono::microseconds timeout) noexcept override { return true; }
void OnInitialized() noexcept override {}
};

namespace
Expand Down

0 comments on commit 7a46d43

Please sign in to comment.