Skip to content

Commit

Permalink
Fix #1028
Browse files Browse the repository at this point in the history
Signed-off-by: owentou <owentou@tencent.com>
  • Loading branch information
owent committed Oct 23, 2021
1 parent cfb02da commit ddf1da2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions sdk/include/opentelemetry/sdk/metrics/sync_instruments.h
Original file line number Diff line number Diff line change
Expand Up @@ -189,12 +189,12 @@ class BoundUpDownCounter final : public BoundSynchronousInstrument<T>,
{

public:
BoundUpDownCounter<T>() = default;
BoundUpDownCounter() = default;

BoundUpDownCounter<T>(nostd::string_view name,
nostd::string_view description,
nostd::string_view unit,
bool enabled)
BoundUpDownCounter(nostd::string_view name,
nostd::string_view description,
nostd::string_view unit,
bool enabled)
: BoundSynchronousInstrument<T>(name,
description,
unit,
Expand Down

0 comments on commit ddf1da2

Please sign in to comment.