diff options
author | Jonathan Wakely <jwakely@redhat.com> | 2022-05-19 12:54:41 +0100 |
---|---|---|
committer | Jonathan Wakely <jwakely@redhat.com> | 2022-05-19 23:39:20 +0100 |
commit | f3e22baec0290c23654e99bf184153765944f4aa (patch) | |
tree | 56b2b15dc39cf95e0cc107c98008a2878c135cdf /libstdc++-v3 | |
parent | 8ccdc7ce33f5e7ca509e5b9f835ed4719db21ffd (diff) | |
download | gcc-f3e22baec0290c23654e99bf184153765944f4aa.zip gcc-f3e22baec0290c23654e99bf184153765944f4aa.tar.gz gcc-f3e22baec0290c23654e99bf184153765944f4aa.tar.bz2 |
libstdc++: Only include <ext/atomicity.h> for COW string
Since the COW std::string was moved to its own header, we don't need the
atomic dispatch helpers in the definition of std::__cxx11::string. Move
the inclusion of the <ext/atomicity.h> header to <bits/cow_string.h>
where it's needed.
libstdc++-v3/ChangeLog:
* include/bits/basic_string.h: Do not include <ext/atomicity.h>
here.
* include/bits/cow_string.h: Include it here.
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/include/bits/basic_string.h | 1 | ||||
-rw-r--r-- | libstdc++-v3/include/bits/cow_string.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/libstdc++-v3/include/bits/basic_string.h b/libstdc++-v3/include/bits/basic_string.h index c3fbc53..6041d05 100644 --- a/libstdc++-v3/include/bits/basic_string.h +++ b/libstdc++-v3/include/bits/basic_string.h @@ -36,7 +36,6 @@ #pragma GCC system_header -#include <ext/atomicity.h> #include <ext/alloc_traits.h> #include <debug/debug.h> diff --git a/libstdc++-v3/include/bits/cow_string.h b/libstdc++-v3/include/bits/cow_string.h index a49a5b0..7bceb06 100644 --- a/libstdc++-v3/include/bits/cow_string.h +++ b/libstdc++-v3/include/bits/cow_string.h @@ -34,6 +34,8 @@ #if ! _GLIBCXX_USE_CXX11_ABI +#include <ext/atomicity.h> // _Atomic_word, __is_single_threaded + #ifdef __cpp_lib_is_constant_evaluated // Support P1032R1 in C++20 (but not P0980R1 for COW strings). # define __cpp_lib_constexpr_string 201811L |