-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
std::is_pod is deprecated #6716
Copy link
Copy link
Closed
Labels
Description
Issue
std::is_pod is used in three header files. it is deprecated in c++20, which will generated warnings when we upgrade to use later versions of the standard
Steps to reproduce
change
set(CMAKE_CXX_STANDARD 17)
to
set(CMAKE_CXX_STANDARD 20)
in CMakeLists.txt. Rebuild and watch the warnings
Specifications
I'm using g++ 13.2.0 on debian linux
Reactions are currently unavailable