diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2019-06-12 21:16:03 +0100 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2019-06-12 21:16:03 +0100 |
commit | 95b3d0fda31a3ce11a84742374bd1ffaad57f6e2 (patch) | |
tree | af6d481544b88d9d2022dc2de64ee0d00c3e9fc3 /libstdc++-v3/include/std/algorithm | |
parent | 1ab4217d816e463c1664e0cef47124af553f8da8 (diff) | |
download | gcc-95b3d0fda31a3ce11a84742374bd1ffaad57f6e2.tar.gz |
Fix incorrect __cpp_lib_parallel_algorithm macro definitions
* include/std/algorithm (__cpp_lib_parallel_algorithm): Fix value.
* include/std/memory (__cpp_lib_parallel_algorithm): Likewise.
* include/std/numeric (__cpp_lib_parallel_algorithm): Likewise.
* testsuite/25_algorithms/pstl/feature_test.cc: New test.
From-SVN: r272216
Diffstat (limited to 'libstdc++-v3/include/std/algorithm')
-rw-r--r-- | libstdc++-v3/include/std/algorithm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/include/std/algorithm b/libstdc++-v3/include/std/algorithm index 18182965fb1..124342c63f0 100644 --- a/libstdc++-v3/include/std/algorithm +++ b/libstdc++-v3/include/std/algorithm @@ -73,7 +73,7 @@ # endif // Feature test macro for parallel algorithms -# define __cpp_lib_parallel_algorithm 201703L +# define __cpp_lib_parallel_algorithm 201603L #endif // C++17 #ifdef _GLIBCXX_PARALLEL |