forked from OSchip/llvm-project
[libc++][NFC] Remove duplicate header includes from <algorithm> and reorder them
Remove duplicate header includes from `<algorithm>` and reorder the includes Reviewed By: Quuxplusone, ldionne, Mordante, #libc, jloser Spies: jloser, libcxx-commits Differential Revision: https://reviews.llvm.org/D116507
This commit is contained in:
parent
6025ee79ae
commit
cf54cb2e03
|
@ -645,15 +645,13 @@ template <class BidirectionalIterator, class Compare>
|
|||
|
||||
*/
|
||||
|
||||
#include <__bits> // __libcpp_clz
|
||||
#include <__config>
|
||||
#include <__debug>
|
||||
#include <__bits> // __libcpp_clz
|
||||
#include <cstddef>
|
||||
#include <cstring>
|
||||
#include <functional>
|
||||
#include <initializer_list>
|
||||
#include <utility> // needed to provide swap_ranges.
|
||||
#include <memory>
|
||||
#include <iterator>
|
||||
#include <memory>
|
||||
#include <type_traits>
|
||||
|
|
Loading…
Reference in New Issue