From e36415df9f9f77a7efa81f07f197c02a3587b0c4 Mon Sep 17 00:00:00 2001 From: Mikhail Khachayants Date: Tue, 7 Mar 2023 16:53:17 +0200 Subject: [PATCH] Fix compile error with GCC 11.3 --- examples/http/tracer_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/http/tracer_common.h b/examples/http/tracer_common.h index f4d1402f24..0b74d2ff8e 100644 --- a/examples/http/tracer_common.h +++ b/examples/http/tracer_common.h @@ -26,7 +26,7 @@ template class HttpTextMapCarrier : public opentelemetry::context::propagation::TextMapCarrier { public: - HttpTextMapCarrier(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