diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2023-02-15 15:07:15 +0000 |
---|---|---|
committer | Jonathan Wakely <jwakely@redhat.com> | 2023-02-16 14:38:38 +0000 |
commit | b85c77e19ad9c40231c4050e6ad373b30de7b2b9 (patch) | |
tree | 696214b1d09c1bdd15f2c17b2693728991ee7630 /libstdc++-v3/include/Makefile.am | |
parent | 38f321793ae18d25399f0396ac1371caa7cc7043 (diff) | |
download | gcc-b85c77e19ad9c40231c4050e6ad373b30de7b2b9.zip gcc-b85c77e19ad9c40231c4050e6ad373b30de7b2b9.tar.gz gcc-b85c77e19ad9c40231c4050e6ad373b30de7b2b9.tar.bz2 |
libstdc++: Implement <experimental/synchronized_value> (P0290)
This was approved for the Concurrency TS v2 in Issaquah.
Although the TS is based on C++20, this enables the new header for C++17
as well. This will make it available to more users, and I hope that will
get more feedback on the feature.
libstdc++-v3/ChangeLog:
* include/Makefile.am: Add new header.
* include/Makefile.in: Regenerate.
* include/experimental/synchronized_value: New file.
* testsuite/experimental/synchronized_value.cc: New test.
Diffstat (limited to 'libstdc++-v3/include/Makefile.am')
-rw-r--r-- | libstdc++-v3/include/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libstdc++-v3/include/Makefile.am b/libstdc++-v3/include/Makefile.am index 5b50127..a880e8e 100644 --- a/libstdc++-v3/include/Makefile.am +++ b/libstdc++-v3/include/Makefile.am @@ -798,6 +798,7 @@ experimental_headers = \ ${experimental_srcdir}/source_location \ ${experimental_srcdir}/string \ ${experimental_srcdir}/string_view \ + ${experimental_srcdir}/synchronized_value \ ${experimental_srcdir}/system_error \ ${experimental_srcdir}/timer \ ${experimental_srcdir}/tuple \ |