Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/clang-tidy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
matrix:
include:
- cmake_options: all-options-abiv1-preview
warning_limit: 371
warning_limit: 366
- cmake_options: all-options-abiv2-preview
warning_limit: 377
warning_limit: 372
env:
CC: /usr/bin/clang-22
CXX: /usr/bin/clang++-22
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ Increment the:
* [CODE HEALTH] Move simple_log_record_processor_test into anonymous namespace
[#4116](https://github.com/open-telemetry/opentelemetry-cpp/pull/4116)

* [CODE HEALTH] Move registry.cc propagator builders into anonymous namespace
[#4121](https://github.com/open-telemetry/opentelemetry-cpp/pull/4121)

## [1.27.0] 2026-05-13

* [RELEASE] Bump main branch to 1.27.0-dev
Expand Down
5 changes: 5 additions & 0 deletions sdk/src/configuration/registry.cc
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ namespace sdk
namespace configuration
{

namespace
{

class TraceContextBuilder : public TextMapPropagatorBuilder
{
public:
Expand Down Expand Up @@ -77,6 +80,8 @@ class JaegerBuilder : public TextMapPropagatorBuilder
}
};

} // namespace

Registry::Registry()
{
SetTextMapPropagatorBuilder("tracecontext", std::make_unique<TraceContextBuilder>());
Expand Down
Loading