[committed] libstdc++: Remove unnecessary header from <memory>

Message ID 20220915225856.413536-1-jwakely@redhat.com
State New, archived
Headers
Series [committed] libstdc++: Remove unnecessary header from <memory> |

Commit Message

Jonathan Wakely Sept. 15, 2022, 10:58 p.m. UTC
  Tested powerpc64le-linux, pushed to trunk.

-- >8 --

Previously <memory> included <bits/stl_algobase.h> so that std::copy,
std::fill etc. could be used by <bits/stl_uninitialized.h>. But that
includes it explicitly now, so that it can be compiled as a header unit.
There's no need to include it in <memory>, where its purpose isn't
obvious.

libstdc++-v3/ChangeLog:

	* include/std/memory: Do not include <bits/stl_algobase.h>.
---
 libstdc++-v3/include/std/memory | 1 -
 1 file changed, 1 deletion(-)
  

Patch

diff --git a/libstdc++-v3/include/std/memory b/libstdc++-v3/include/std/memory
index 481fa42a618..20a55020a36 100644
--- a/libstdc++-v3/include/std/memory
+++ b/libstdc++-v3/include/std/memory
@@ -60,7 +60,6 @@ 
  * Smart pointers, etc.
  */
 
-#include <bits/stl_algobase.h>
 #include <bits/allocator.h>
 #include <bits/stl_construct.h>
 #include <bits/stl_uninitialized.h>