Skip to content

Commit d8157f2

Browse files
authored
Merge pull request #12 from DataDog/david.goffredo/w3c-propagation-preparation
Propagation changes in anticipation of W3C support
2 parents b9cfdaf + 9ad952f commit d8157f2

22 files changed

+2786
-2233
lines changed

.circleci/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The following jobs are defined:
1313
- Based on the `toolchain` parameter, the build will use either g++ or
1414
clang++.
1515
- Based on the `sanitize` parameter, the build might use [AddressSanitizer and
16-
MemorySanitizer][3].
16+
UndefinedBehaviorSanitizer][3].
1717

1818
[1]: https://bazel.build/
1919
[2]: https://cmake.org/

BUILD.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ cc_library(
2626
"src/datadog/null_collector.cpp",
2727
"src/datadog/optional.cpp",
2828
"src/datadog/parse_util.cpp",
29-
"src/datadog/propagation_styles.cpp",
29+
"src/datadog/propagation_style.cpp",
3030
"src/datadog/rate.cpp",
3131
"src/datadog/sampling_decision.cpp",
3232
"src/datadog/sampling_mechanism.cpp",
@@ -77,7 +77,7 @@ cc_library(
7777
"src/datadog/null_collector.h",
7878
"src/datadog/optional.h",
7979
"src/datadog/parse_util.h",
80-
"src/datadog/propagation_styles.h",
80+
"src/datadog/propagation_style.h",
8181
"src/datadog/rate.h",
8282
"src/datadog/sampling_decision.h",
8383
"src/datadog/sampling_mechanism.h",

CMakeLists.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ project(dd-trace-cpp)
66

77
option(BUILD_COVERAGE "Build code with code coverage profiling instrumentation" OFF)
88
option(BUILD_EXAMPLE "Build the example program (example/)" OFF)
9+
option(BUILD_TESTING "Build the unit tests (test/)" OFF)
10+
option(SANITIZE "Build with address sanitizer and undefined behavior sanitizer" OFF)
911

1012
set(CMAKE_BUILD_TYPE "RelWithDebInfo")
1113
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
@@ -78,7 +80,7 @@ target_sources(dd_trace_cpp PRIVATE
7880
src/datadog/null_collector.cpp
7981
src/datadog/optional.cpp
8082
src/datadog/parse_util.cpp
81-
src/datadog/propagation_styles.cpp
83+
src/datadog/propagation_style.cpp
8284
src/datadog/rate.cpp
8385
src/datadog/sampling_decision.cpp
8486
src/datadog/sampling_mechanism.cpp
@@ -135,7 +137,7 @@ target_sources(dd_trace_cpp PUBLIC
135137
src/datadog/null_collector.h
136138
src/datadog/optional.h
137139
src/datadog/parse_util.h
138-
src/datadog/propagation_styles.h
140+
src/datadog/propagation_style.h
139141
src/datadog/rate.h
140142
src/datadog/sampling_decision.h
141143
src/datadog/sampling_mechanism.h

0 commit comments

Comments
 (0)