webrtc icon indicating copy to clipboard operation
webrtc copied to clipboard

is_pod deprecated !

Open basharalbashier opened this issue 1 year ago • 1 comments

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.

basharalbashier avatar Jun 14 '24 13:06 basharalbashier

You'll want to create a fresh PR based off of the m125_release branch. It's hard to tell what your PR changes.

davidliu avatar Jun 14 '24 15:06 davidliu