Skip to content

Commit f732872

Browse files
tyler92lalitb
andauthored
Fix compile error with GCC 11.3 (#2025)
Co-authored-by: Lalit Kumar Bhasin <[email protected]>
1 parent 2b08db2 commit f732872

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/http/tracer_common.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ template <typename T>
2626
class HttpTextMapCarrier : public opentelemetry::context::propagation::TextMapCarrier
2727
{
2828
public:
29-
HttpTextMapCarrier<T>(T &headers) : headers_(headers) {}
29+
HttpTextMapCarrier(T &headers) : headers_(headers) {}
3030
HttpTextMapCarrier() = default;
3131
virtual opentelemetry::nostd::string_view Get(
3232
opentelemetry::nostd::string_view key) const noexcept override

0 commit comments

Comments
 (0)