Skip to content

Commit

Permalink
Fix compile error with GCC 11.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler92 committed Mar 7, 2023
1 parent 0b72b03 commit e36415d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/http/tracer_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ template <typename T>
class HttpTextMapCarrier : public opentelemetry::context::propagation::TextMapCarrier
{
public:
HttpTextMapCarrier<T>(T &headers) : headers_(headers) {}
HttpTextMapCarrier(T &headers) : headers_(headers) {}
HttpTextMapCarrier() = default;
virtual opentelemetry::nostd::string_view Get(
opentelemetry::nostd::string_view key) const noexcept override
Expand Down

0 comments on commit e36415d

Please sign in to comment.