[libcxx-commits] [PATCH] D94409: [libc++] [C++2b] [P1048] Add is_scoped_enum and is_scoped_enum_v.

Mark de Wever via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Mon Jan 11 10:46:33 PST 2021


Mordante added inline comments.


================
Comment at: libcxx/include/type_traits:289
+      template <class T> inline constexpr bool is_scoped_enum_v
+        = is_scoped_enumer<T>::value;                                    // C++2b
 
----------------
`is_scoped_enumer` -> `is_scoped_enum`.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D94409/new/

https://reviews.llvm.org/D94409



More information about the libcxx-commits mailing list