[libcxx-commits] [PATCH] D82171: [libc++] Require concepts support for <numbers>
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Jun 19 08:05:35 PDT 2020
ldionne accepted this revision.
ldionne marked an inline comment as done.
ldionne added a comment.
This revision is now accepted and ready to land.
Thanks @tambre , going to commit this now.
================
Comment at: libcxx/utils/generate_feature_test_macro_components.py:607
"headers": ["numbers"],
+ "depends": "defined(__cpp_concepts) && __cpp_concepts >= 201811L",
+ "internal_depends": "defined(__cpp_concepts) && __cpp_concepts >= 201811L",
----------------
@tambre This is the part that was missing. I added that and re-generated the files.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D82171/new/
https://reviews.llvm.org/D82171
More information about the libcxx-commits
mailing list