webrtc
webrtc copied to clipboard
is_pod deprecated !
I was compiling this on linux and faced this issue: error: 'is_podwebrtc::CodecSpecificInfoVP9' is deprecated: use is_standard_layout && is_trivial instead [-Werror,-Wdeprecated-declarations] static_assert(std::is_pod<CodecSpecificInfoVP9>::value, "");
I resolve it by replacing is_pod with is_standard_layout and worked fine. I created this pull request to make allow contributors to review it.
You'll want to create a fresh PR based off of the m125_release branch. It's hard to tell what your PR changes.