[libcxx-commits] [PATCH] D117962: [libc++] Fix LWG3422 "Issues of seed_seq's constructors"

Mark de Wever via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Sun Jan 23 04:51:31 PST 2022


Mordante accepted this revision as: Mordante.
Mordante added a comment.

LGTM!



================
Comment at: libcxx/include/__random/seed_seq.h:44
 #ifndef _LIBCPP_CXX03_LANG
-    template<class _Tp>
+    template<class _Tp, __enable_if_t<is_integral<_Tp>::value>* = nullptr>
         _LIBCPP_INLINE_VISIBILITY
----------------
Please include `__nullptr` to make sure this is available.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D117962



More information about the libcxx-commits mailing list