[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 11:37:34 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
 
----------------
curdeius wrote:
> curdeius wrote:
> > Mordante wrote:
> > > `is_scoped_enumer` -> `is_scoped_enum`.
> > Gosh, thanks for catching that.
> > It means that I haven't added tests for _v.
> Oh, that's the synopsis.
Yes only the synopsis, the implementation doesn't have the typo.


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