Skip to content

Commit

Permalink
Fix constructor of GaugeAggregator
Browse files Browse the repository at this point in the history
Signed-off-by: owent <admin@owent.net>
  • Loading branch information
owent committed Oct 24, 2021
1 parent 75f7a26 commit 75ed1cd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ template <class T>
class GaugeAggregator : public Aggregator<T>
{
public:
explicit GaugeAggregator<T>(metrics_api::InstrumentKind kind)
explicit GaugeAggregator(metrics_api::InstrumentKind kind)
{
static_assert(std::is_arithmetic<T>::value, "Not an arithmetic type");
this->kind_ = kind;
Expand Down

0 comments on commit 75ed1cd

Please sign in to comment.