[libcxx-commits] [PATCH] D96577: [libcxx] adds concept `std::uniform_random_bit_generator`
Christopher Di Bella via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Feb 17 14:42:01 PST 2021
cjdb added inline comments.
================
Comment at: libcxx/include/random:1704
+#if _LIBCPP_STD_VER > 17 && defined(__cpp_concepts) && __cpp_concepts >= 201811L
+
----------------
ldionne wrote:
> miscco wrote:
> > in https://reviews.llvm.org/D93166 we have a definition of _LIBCPP_HAS_NO_CONCEPTS
> >
> > Should we reuse that globally and why are there different values ofr the macro?
> > why are there different values ofr the macro?
>
> I don't know. @cjdb do you know what `201907L` vs `201811L` represents for `__cpp_concepts`?
>
> > Should we reuse that globally
>
> Depending to the answer to the question above, I think it would make sense to use `#if _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_CONCEPTS)`.
I believe @Mordante has a patch to fix this globally. As for 201811L vs 201907L, this is consistent with what's in libc++ `<concepts>` right now.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D96577/new/
https://reviews.llvm.org/D96577
More information about the libcxx-commits
mailing list