opentracing-cpp
opentracing-cpp copied to clipboard
OpenTracing API for C++. 🛑 This library is DEPRECATED! https://github.com/opentracing/specification/issues/163
Building with glibc 2.34 leads to a compilation error because `SIGSTKSZ` is not a constant anymore. From glibc's NEWS file: ``` * Add _SC_MINSIGSTKSZ and _SC_SIGSTKSZ. When _SC_SIGSTKSZ_SOURCE or _GNU_SOURCE...
[]()@lookfwd
This addresses issue #144
As a library user, i would like to compile my code using the C++20 standard. But in `/3rd_party/include/opentracing/variant/variant.hpp' the `std::result_of` template is used: This template was removed in C++20: see...
std::result_of was deprecated in c++17 and removed in c++20. This PR configures the project to use c++17 if the compiler supports it and use std::invoke_result instead of std::result_of. If the...
Hi, I have an issue if I try to execute make in the build folder ``` .build git:(master) ✗ make [ 12%] Built target opentracing [ 24%] Built target opentracing-static...
Is there a way to send a binary object (protobuf) as a value for an attribute, and then outside the program being traced, convert the binary object to key value...
The affected characters herein triggered warnings: C:\Dev\vcpkg\buildtrees\opentracing\src\b67575dab0-0250653c81.clean\ 3rd_party\include\opentracing/expected/expected.hpp(1): warning C4828: The file contains a character starting at offset 0x4a77 that is illegal in the current source character set (codepage 65001).
CLion won't build **install** target of CMake. And if I build from source by CLion, the built targets won't carry correct INTERFACE include directories. So when linking with opentracing, the...