[libcxx-commits] [PATCH] D94409: [libc++] [C++2b] [P1048] Add is_scoped_enum and is_scoped_enum_v.
Marek Kurdej via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Jan 11 11:00:12 PST 2021
curdeius planned changes to this revision.
curdeius 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
----------------
Mordante wrote:
> `is_scoped_enumer` -> `is_scoped_enum`.
Gosh, thanks for catching that.
It means that I haven't added tests for _v.
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