-
-
Notifications
You must be signed in to change notification settings - Fork 7.4k
std::is_pod is deprecated in C++20 #1913
Copy link
Copy link
Closed
Labels
kind: bugrelease item: 🔨 further changesolution: proposed fixa fix for the issue has been proposed and waits for confirmationa fix for the issue has been proposed and waits for confirmation
Milestone
Metadata
Metadata
Assignees
Labels
kind: bugrelease item: 🔨 further changesolution: proposed fixa fix for the issue has been proposed and waits for confirmationa fix for the issue has been proposed and waits for confirmation
Newest msvc preview version already implements warning for this case. While it's not urgent in any way, it might be nice to replace it with either
std::is_standard_layoutorstd::is_trivialto avoid warnings during compilation with newer standard support.Here you can find more details on its deprecation:
https://stackoverflow.com/questions/48225673/why-is-stdis-pod-deprecated-in-c20