[libcxx-commits] [libcxx] [libc++] Deprecate `is_pod(_v)` since C++20 (PR #129471)

A. Jiang via libcxx-commits libcxx-commits at lists.llvm.org
Tue Mar 4 19:03:55 PST 2025


================
@@ -95,8 +95,8 @@ namespace std
     template <class T> struct is_unbounded_array;               // C++20
 
     // Member introspection:
-    template <class T> struct is_pod;
     template <class T> struct is_trivial;
+    template <class T> struct is_pod;          // Deprecated in C++20
----------------
frederick-vs-ja wrote:

I found that there're inconsistent `// Since C++23` comments. Should we also change them to `// C++23`?

https://github.com/llvm/llvm-project/pull/129471


More information about the libcxx-commits mailing list