libstdc++: Remove unnecessary header from <memory>
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>.
This commit is contained in:
parent
2b75d5f533
commit
d6ccad7641
1 changed files with 0 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue