opencv / ade

Apache License 2.0
59 stars 49 forks source link

replaced std::is_pod with custom is_pod trait #27

Closed marco-langer closed 1 year ago

marco-langer commented 2 years ago

This PR replaces invocations of std::is_pod, which is deprecated since C++20, with a custom is_pod trait, which has an equivalent behavior compared with the old std::is_pod.

The deprecated warning from std::is_pod during the build of ade was mentioned in another comment in the opencv repository.