From: Jonathan Wakely Date: Tue, 23 Nov 2021 12:28:22 +0000 (+0000) Subject: libstdc++: Fix circular dependency for bitmap_allocator [PR103381] X-Git-Tag: basepoints/gcc-13~2843 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5459fa132a99e6037e5ccf1b49d617677a584ff8;p=thirdparty%2Fgcc.git libstdc++: Fix circular dependency for bitmap_allocator [PR103381] includes , and since C++17 that includes . If std::allocator is defined in terms of __gnu_cxx::bitmap_allocator then you get a circular reference and bootstrap fails when compiling src/c++17/*.cc. libstdc++-v3/ChangeLog: PR libstdc++/103381 * include/ext/bitmap_allocator.h: Include instead of . --- diff --git a/libstdc++-v3/include/ext/bitmap_allocator.h b/libstdc++-v3/include/ext/bitmap_allocator.h index cc80593764c4..0444deb479c7 100644 --- a/libstdc++-v3/include/ext/bitmap_allocator.h +++ b/libstdc++-v3/include/ext/bitmap_allocator.h @@ -31,7 +31,7 @@ #include // For std::pair. #include // For __throw_bad_alloc(). -#include // For greater_equal, and less_equal. +#include // For greater_equal, and less_equal. #include // For operator new. #include // _GLIBCXX_DEBUG_ASSERT #include