diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2019-06-14 15:03:16 +0100 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2019-06-14 15:03:16 +0100 |
commit | c68c4c982d6f762bd1938b90f6cb5f210d509939 (patch) | |
tree | 48d9c5d6013362ca280c9ec59d9ac677ad71fa85 | |
parent | 8a26547b39e2e6ddc8097969c0a2c18f65afda6c (diff) | |
download | gcc-c68c4c982d6f762bd1938b90f6cb5f210d509939.zip gcc-c68c4c982d6f762bd1938b90f6cb5f210d509939.tar.gz gcc-c68c4c982d6f762bd1938b90f6cb5f210d509939.tar.bz2 |
Add __cpp_lib_bind_front macro to <version> header
* include/std/version (__cpp_lib_bind_front): Add missing macro.
From-SVN: r272288
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/include/std/version | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 4b5156b..1c63033 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2019-06-14 Jonathan Wakely <jwakely@redhat.com> + + * include/std/version (__cpp_lib_bind_front): Add missing macro. + 2019-06-12 Jonathan Wakely <jwakely@redhat.com> * include/std/algorithm (__cpp_lib_parallel_algorithm): Fix value. diff --git a/libstdc++-v3/include/std/version b/libstdc++-v3/include/std/version index cef4f1f..e300fc3 100644 --- a/libstdc++-v3/include/std/version +++ b/libstdc++-v3/include/std/version @@ -150,6 +150,7 @@ #if __cplusplus > 201703L // c++2a +#define __cpp_lib_bind_front 201902L #define __cpp_lib_bounded_array_traits 201902L #if __cpp_impl_destroying_delete # define __cpp_lib_destroying_delete 201806L |