You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 26, 2024. It is now read-only.
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 https://en.cppreference.com/w/cpp/types/result_of
std::invoke_result<>
can be used as an drop in replacement.To make the code still compile in C++ versions below C++17 the code can use
__cpp_lib_is_invocable
(https://en.cppreference.com/w/cpp/feature_test) to differente. g.
The text was updated successfully, but these errors were encountered: