webrtc-sdk / webrtc

BSD 3-Clause "New" or "Revised" License
225 stars 89 forks source link

is_pod deprecated ! #124

Open basharalbashier opened 3 months ago

basharalbashier commented 3 months ago

I was compiling this on linux and faced this issue: error: 'is_pod' is deprecated: use is_standard_layout && is_trivial instead [-Werror,-Wdeprecated-declarations] static_assert(std::is_pod::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.

davidliu commented 3 months ago

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