diff options
author | Patrick Palka <ppalka@redhat.com> | 2021-06-21 09:45:31 -0400 |
---|---|---|
committer | Patrick Palka <ppalka@redhat.com> | 2021-06-21 09:45:31 -0400 |
commit | 12bdd39755a25d237b7776153cbe03e171396fc5 (patch) | |
tree | 3058417710687b0c38c0cf67f43320474fc0213c | |
parent | edf0c3ffb59d75c11e05bc722432dc554e275c72 (diff) | |
download | gcc-12bdd39755a25d237b7776153cbe03e171396fc5.zip gcc-12bdd39755a25d237b7776153cbe03e171396fc5.tar.gz gcc-12bdd39755a25d237b7776153cbe03e171396fc5.tar.bz2 |
libstdc++: Sync __cpp_lib_ranges macro defined in ranges_cmp.h
r12-1606 bumped the value of __cpp_lib_ranges defined in <version>,
but this macro is also defined in <bits/range_cmp.h>, so it needs to
be updated there as well.
libstdc++-v3/ChangeLog:
* include/bits/ranges_cmp.h (__cpp_lib_ranges): Adjust value.
-rw-r--r-- | libstdc++-v3/include/bits/ranges_cmp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/include/bits/ranges_cmp.h b/libstdc++-v3/include/bits/ranges_cmp.h index f859a33..1d7da30 100644 --- a/libstdc++-v3/include/bits/ranges_cmp.h +++ b/libstdc++-v3/include/bits/ranges_cmp.h @@ -57,7 +57,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION #ifdef __cpp_lib_concepts // Define this here, included by all the headers that need to define it. -#define __cpp_lib_ranges 201911L +#define __cpp_lib_ranges 202106L namespace ranges { |