From 5459fa132a99e6037e5ccf1b49d617677a584ff8 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Tue, 23 Nov 2021 12:28:22 +0000 Subject: [PATCH] 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 . --- libstdc++-v3/include/ext/bitmap_allocator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libstdc++-v3/include/ext/bitmap_allocator.h b/libstdc++-v3/include/ext/bitmap_allocator.h index cc80593764c..0444deb479c 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