Environment:
OS: macOS 10.13.6
Compiler: Xcode 10, clang-1000.11.45.2
Relevant compiler flag: -std=c++1z
Got this error
webrtc/modules/rtp_rtcp/include/rtp_rtcp_defines.h:83:12: error: call to unavailable function 'get': introduced in macOS 10.14
return absl::get<VideoPayload>(payload_);
I guess the checks in config.h are not strict enough for this combination.
The type of payload_ is:
absl::variant<AudioPayload, VideoPayload> payload_;