From: Jonathan Wakely Date: Sun, 16 Nov 2025 13:57:25 +0000 (+0000) Subject: libstdc++: Include in syncbuf.cc [PR122698] X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84dbb22f32a525a0f0e0b7c02c56eec2fa6f39da;p=thirdparty%2Fgcc.git libstdc++: Include in syncbuf.cc [PR122698] For most configurations bits/std_mutex.h would already be included by , but not if configured with _GLIBCXX_USE_CXX11_ABI=0 as the default, because syncbuf is disabled in that case. libstdc++-v3/ChangeLog: PR libstdc++/122698 * src/c++20/syncbuf.cc (__syncbuf_get_mutex): Include . Fix indentation of function body. --- diff --git a/libstdc++-v3/src/c++20/syncbuf.cc b/libstdc++-v3/src/c++20/syncbuf.cc index 150ba5e3ce4..1fe380ec283 100644 --- a/libstdc++-v3/src/c++20/syncbuf.cc +++ b/libstdc++-v3/src/c++20/syncbuf.cc @@ -23,6 +23,7 @@ // . #include +#include #include #if _GLIBCXX_HAS_GTHREADS @@ -32,13 +33,13 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION mutex& __syncbuf_get_mutex(void* __t) - { - const unsigned char __mask = 0xf; - static mutex __m[__mask + 1]; +{ + const unsigned char __mask = 0xf; + static mutex __m[__mask + 1]; - auto __key = _Hash_impl::hash(__t) & __mask; - return __m[__key]; - } + auto __key = _Hash_impl::hash(__t) & __mask; + return __m[__key]; +} _GLIBCXX_END_NAMESPACE_VERSION }