clang-tidy reports the following warnings in baggage.h
opentelemetry-cpp/api/include/opentelemetry/baggage/baggage.h (3 warnings)
| Line |
Check |
Message |
| 238 |
cppcoreguidelines-narrowing-conversions |
narrowing conversion from 'int' to signed type 'char' is implementation-defined |
| 239 |
cppcoreguidelines-narrowing-conversions |
narrowing conversion from 'int' to signed type 'char' is implementation-defined |
| 270 |
cppcoreguidelines-narrowing-conversions |
narrowing conversion from 'int' to signed type 'char' is implementation-defined |
To reproduce locally run the following in the development container:
export CXX_STANDARD=14
./ci/do_ci.sh cmake.clang_tidy.test
The markdown report with unique errors can be generated locally after building with the ci/create_clang_tidy_report.py script.
clang-tidy reports the following warnings in baggage.h
opentelemetry-cpp/api/include/opentelemetry/baggage/baggage.h (3 warnings)
cppcoreguidelines-narrowing-conversionscppcoreguidelines-narrowing-conversionscppcoreguidelines-narrowing-conversionsTo reproduce locally run the following in the development container:
The markdown report with unique errors can be generated locally after building with the
ci/create_clang_tidy_report.pyscript.