Skip to content

Commit a5c77e5

Browse files
committed
[libc++][C++03] Fix libc++ includes
1 parent 0dcf755 commit a5c77e5

File tree

1,010 files changed

+9537
-9537
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,010 files changed

+9537
-9537
lines changed

libcxx/include/__cxx03/__algorithm/adjacent_find.h

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@
1010
#ifndef _LIBCPP___ALGORITHM_ADJACENT_FIND_H
1111
#define _LIBCPP___ALGORITHM_ADJACENT_FIND_H
1212

13-
#include <__algorithm/comp.h>
14-
#include <__algorithm/iterator_operations.h>
15-
#include <__config>
16-
#include <__iterator/iterator_traits.h>
17-
#include <__utility/move.h>
13+
#include <__cxx03/__algorithm/comp.h>
14+
#include <__cxx03/__algorithm/iterator_operations.h>
15+
#include <__cxx03/__config>
16+
#include <__cxx03/__iterator/iterator_traits.h>
17+
#include <__cxx03/__utility/move.h>
1818

1919
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
2020
# pragma GCC system_header
2121
#endif
2222

2323
_LIBCPP_PUSH_MACROS
24-
#include <__undef_macros>
24+
#include <__cxx03/__undef_macros>
2525

2626
_LIBCPP_BEGIN_NAMESPACE_STD
2727

libcxx/include/__cxx03/__algorithm/all_of.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#ifndef _LIBCPP___ALGORITHM_ALL_OF_H
1111
#define _LIBCPP___ALGORITHM_ALL_OF_H
1212

13-
#include <__config>
13+
#include <__cxx03/__config>
1414

1515
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
1616
# pragma GCC system_header

libcxx/include/__cxx03/__algorithm/any_of.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#ifndef _LIBCPP___ALGORITHM_ANY_OF_H
1111
#define _LIBCPP___ALGORITHM_ANY_OF_H
1212

13-
#include <__config>
13+
#include <__cxx03/__config>
1414

1515
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
1616
# pragma GCC system_header

libcxx/include/__cxx03/__algorithm/binary_search.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
#ifndef _LIBCPP___ALGORITHM_BINARY_SEARCH_H
1010
#define _LIBCPP___ALGORITHM_BINARY_SEARCH_H
1111

12-
#include <__algorithm/comp.h>
13-
#include <__algorithm/comp_ref_type.h>
14-
#include <__algorithm/lower_bound.h>
15-
#include <__config>
16-
#include <__iterator/iterator_traits.h>
12+
#include <__cxx03/__algorithm/comp.h>
13+
#include <__cxx03/__algorithm/comp_ref_type.h>
14+
#include <__cxx03/__algorithm/lower_bound.h>
15+
#include <__cxx03/__config>
16+
#include <__cxx03/__iterator/iterator_traits.h>
1717

1818
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
1919
# pragma GCC system_header

libcxx/include/__cxx03/__algorithm/clamp.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
#ifndef _LIBCPP___ALGORITHM_CLAMP_H
1010
#define _LIBCPP___ALGORITHM_CLAMP_H
1111

12-
#include <__algorithm/comp.h>
13-
#include <__assert>
14-
#include <__config>
12+
#include <__cxx03/__algorithm/comp.h>
13+
#include <__cxx03/__assert>
14+
#include <__cxx03/__config>
1515

1616
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
1717
# pragma GCC system_header

libcxx/include/__cxx03/__algorithm/comp.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
#ifndef _LIBCPP___ALGORITHM_COMP_H
1010
#define _LIBCPP___ALGORITHM_COMP_H
1111

12-
#include <__config>
13-
#include <__type_traits/desugars_to.h>
12+
#include <__cxx03/__config>
13+
#include <__cxx03/__type_traits/desugars_to.h>
1414

1515
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
1616
# pragma GCC system_header

libcxx/include/__cxx03/__algorithm/comp_ref_type.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
#ifndef _LIBCPP___ALGORITHM_COMP_REF_TYPE_H
1010
#define _LIBCPP___ALGORITHM_COMP_REF_TYPE_H
1111

12-
#include <__assert>
13-
#include <__config>
14-
#include <__utility/declval.h>
12+
#include <__cxx03/__assert>
13+
#include <__cxx03/__config>
14+
#include <__cxx03/__utility/declval.h>
1515

1616
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
1717
# pragma GCC system_header

libcxx/include/__cxx03/__algorithm/copy.h

+10-10
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@
99
#ifndef _LIBCPP___ALGORITHM_COPY_H
1010
#define _LIBCPP___ALGORITHM_COPY_H
1111

12-
#include <__algorithm/copy_move_common.h>
13-
#include <__algorithm/for_each_segment.h>
14-
#include <__algorithm/iterator_operations.h>
15-
#include <__algorithm/min.h>
16-
#include <__config>
17-
#include <__iterator/segmented_iterator.h>
18-
#include <__type_traits/common_type.h>
19-
#include <__utility/move.h>
20-
#include <__utility/pair.h>
12+
#include <__cxx03/__algorithm/copy_move_common.h>
13+
#include <__cxx03/__algorithm/for_each_segment.h>
14+
#include <__cxx03/__algorithm/iterator_operations.h>
15+
#include <__cxx03/__algorithm/min.h>
16+
#include <__cxx03/__config>
17+
#include <__cxx03/__iterator/segmented_iterator.h>
18+
#include <__cxx03/__type_traits/common_type.h>
19+
#include <__cxx03/__utility/move.h>
20+
#include <__cxx03/__utility/pair.h>
2121

2222
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
2323
# pragma GCC system_header
2424
#endif
2525

2626
_LIBCPP_PUSH_MACROS
27-
#include <__undef_macros>
27+
#include <__cxx03/__undef_macros>
2828

2929
_LIBCPP_BEGIN_NAMESPACE_STD
3030

libcxx/include/__cxx03/__algorithm/copy_backward.h

+10-10
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@
99
#ifndef _LIBCPP___ALGORITHM_COPY_BACKWARD_H
1010
#define _LIBCPP___ALGORITHM_COPY_BACKWARD_H
1111

12-
#include <__algorithm/copy_move_common.h>
13-
#include <__algorithm/iterator_operations.h>
14-
#include <__algorithm/min.h>
15-
#include <__config>
16-
#include <__iterator/segmented_iterator.h>
17-
#include <__type_traits/common_type.h>
18-
#include <__type_traits/is_constructible.h>
19-
#include <__utility/move.h>
20-
#include <__utility/pair.h>
12+
#include <__cxx03/__algorithm/copy_move_common.h>
13+
#include <__cxx03/__algorithm/iterator_operations.h>
14+
#include <__cxx03/__algorithm/min.h>
15+
#include <__cxx03/__config>
16+
#include <__cxx03/__iterator/segmented_iterator.h>
17+
#include <__cxx03/__type_traits/common_type.h>
18+
#include <__cxx03/__type_traits/is_constructible.h>
19+
#include <__cxx03/__utility/move.h>
20+
#include <__cxx03/__utility/pair.h>
2121

2222
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
2323
# pragma GCC system_header
2424
#endif
2525

2626
_LIBCPP_PUSH_MACROS
27-
#include <__undef_macros>
27+
#include <__cxx03/__undef_macros>
2828

2929
_LIBCPP_BEGIN_NAMESPACE_STD
3030

libcxx/include/__cxx03/__algorithm/copy_if.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#ifndef _LIBCPP___ALGORITHM_COPY_IF_H
1010
#define _LIBCPP___ALGORITHM_COPY_IF_H
1111

12-
#include <__config>
12+
#include <__cxx03/__config>
1313

1414
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
1515
# pragma GCC system_header

libcxx/include/__cxx03/__algorithm/copy_move_common.h

+17-17
Original file line numberDiff line numberDiff line change
@@ -9,29 +9,29 @@
99
#ifndef _LIBCPP___ALGORITHM_COPY_MOVE_COMMON_H
1010
#define _LIBCPP___ALGORITHM_COPY_MOVE_COMMON_H
1111

12-
#include <__algorithm/iterator_operations.h>
13-
#include <__algorithm/unwrap_iter.h>
14-
#include <__algorithm/unwrap_range.h>
15-
#include <__config>
16-
#include <__iterator/iterator_traits.h>
17-
#include <__memory/pointer_traits.h>
18-
#include <__string/constexpr_c_functions.h>
19-
#include <__type_traits/enable_if.h>
20-
#include <__type_traits/is_always_bitcastable.h>
21-
#include <__type_traits/is_constant_evaluated.h>
22-
#include <__type_traits/is_constructible.h>
23-
#include <__type_traits/is_trivially_assignable.h>
24-
#include <__type_traits/is_volatile.h>
25-
#include <__utility/move.h>
26-
#include <__utility/pair.h>
27-
#include <cstddef>
12+
#include <__cxx03/__algorithm/iterator_operations.h>
13+
#include <__cxx03/__algorithm/unwrap_iter.h>
14+
#include <__cxx03/__algorithm/unwrap_range.h>
15+
#include <__cxx03/__config>
16+
#include <__cxx03/__iterator/iterator_traits.h>
17+
#include <__cxx03/__memory/pointer_traits.h>
18+
#include <__cxx03/__string/constexpr_c_functions.h>
19+
#include <__cxx03/__type_traits/enable_if.h>
20+
#include <__cxx03/__type_traits/is_always_bitcastable.h>
21+
#include <__cxx03/__type_traits/is_constant_evaluated.h>
22+
#include <__cxx03/__type_traits/is_constructible.h>
23+
#include <__cxx03/__type_traits/is_trivially_assignable.h>
24+
#include <__cxx03/__type_traits/is_volatile.h>
25+
#include <__cxx03/__utility/move.h>
26+
#include <__cxx03/__utility/pair.h>
27+
#include <__cxx03/cstddef>
2828

2929
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
3030
# pragma GCC system_header
3131
#endif
3232

3333
_LIBCPP_PUSH_MACROS
34-
#include <__undef_macros>
34+
#include <__cxx03/__undef_macros>
3535

3636
_LIBCPP_BEGIN_NAMESPACE_STD
3737

libcxx/include/__cxx03/__algorithm/copy_n.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
#ifndef _LIBCPP___ALGORITHM_COPY_N_H
1010
#define _LIBCPP___ALGORITHM_COPY_N_H
1111

12-
#include <__algorithm/copy.h>
13-
#include <__config>
14-
#include <__iterator/iterator_traits.h>
15-
#include <__type_traits/enable_if.h>
16-
#include <__utility/convert_to_integral.h>
12+
#include <__cxx03/__algorithm/copy.h>
13+
#include <__cxx03/__config>
14+
#include <__cxx03/__iterator/iterator_traits.h>
15+
#include <__cxx03/__type_traits/enable_if.h>
16+
#include <__cxx03/__utility/convert_to_integral.h>
1717

1818
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
1919
# pragma GCC system_header

libcxx/include/__cxx03/__algorithm/count.h

+10-10
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,22 @@
1010
#ifndef _LIBCPP___ALGORITHM_COUNT_H
1111
#define _LIBCPP___ALGORITHM_COUNT_H
1212

13-
#include <__algorithm/iterator_operations.h>
14-
#include <__algorithm/min.h>
15-
#include <__bit/invert_if.h>
16-
#include <__bit/popcount.h>
17-
#include <__config>
18-
#include <__functional/identity.h>
19-
#include <__functional/invoke.h>
20-
#include <__fwd/bit_reference.h>
21-
#include <__iterator/iterator_traits.h>
13+
#include <__cxx03/__algorithm/iterator_operations.h>
14+
#include <__cxx03/__algorithm/min.h>
15+
#include <__cxx03/__bit/invert_if.h>
16+
#include <__cxx03/__bit/popcount.h>
17+
#include <__cxx03/__config>
18+
#include <__cxx03/__functional/identity.h>
19+
#include <__cxx03/__functional/invoke.h>
20+
#include <__cxx03/__fwd/bit_reference.h>
21+
#include <__cxx03/__iterator/iterator_traits.h>
2222

2323
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
2424
# pragma GCC system_header
2525
#endif
2626

2727
_LIBCPP_PUSH_MACROS
28-
#include <__undef_macros>
28+
#include <__cxx03/__undef_macros>
2929

3030
_LIBCPP_BEGIN_NAMESPACE_STD
3131

libcxx/include/__cxx03/__algorithm/count_if.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
#ifndef _LIBCPP___ALGORITHM_COUNT_IF_H
1111
#define _LIBCPP___ALGORITHM_COUNT_IF_H
1212

13-
#include <__config>
14-
#include <__iterator/iterator_traits.h>
13+
#include <__cxx03/__config>
14+
#include <__cxx03/__iterator/iterator_traits.h>
1515

1616
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
1717
# pragma GCC system_header

libcxx/include/__cxx03/__algorithm/equal.h

+15-15
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,27 @@
1010
#ifndef _LIBCPP___ALGORITHM_EQUAL_H
1111
#define _LIBCPP___ALGORITHM_EQUAL_H
1212

13-
#include <__algorithm/comp.h>
14-
#include <__algorithm/unwrap_iter.h>
15-
#include <__config>
16-
#include <__functional/identity.h>
17-
#include <__functional/invoke.h>
18-
#include <__iterator/distance.h>
19-
#include <__iterator/iterator_traits.h>
20-
#include <__string/constexpr_c_functions.h>
21-
#include <__type_traits/desugars_to.h>
22-
#include <__type_traits/enable_if.h>
23-
#include <__type_traits/is_constant_evaluated.h>
24-
#include <__type_traits/is_equality_comparable.h>
25-
#include <__type_traits/is_volatile.h>
26-
#include <__utility/move.h>
13+
#include <__cxx03/__algorithm/comp.h>
14+
#include <__cxx03/__algorithm/unwrap_iter.h>
15+
#include <__cxx03/__config>
16+
#include <__cxx03/__functional/identity.h>
17+
#include <__cxx03/__functional/invoke.h>
18+
#include <__cxx03/__iterator/distance.h>
19+
#include <__cxx03/__iterator/iterator_traits.h>
20+
#include <__cxx03/__string/constexpr_c_functions.h>
21+
#include <__cxx03/__type_traits/desugars_to.h>
22+
#include <__cxx03/__type_traits/enable_if.h>
23+
#include <__cxx03/__type_traits/is_constant_evaluated.h>
24+
#include <__cxx03/__type_traits/is_equality_comparable.h>
25+
#include <__cxx03/__type_traits/is_volatile.h>
26+
#include <__cxx03/__utility/move.h>
2727

2828
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
2929
# pragma GCC system_header
3030
#endif
3131

3232
_LIBCPP_PUSH_MACROS
33-
#include <__undef_macros>
33+
#include <__cxx03/__undef_macros>
3434

3535
_LIBCPP_BEGIN_NAMESPACE_STD
3636

libcxx/include/__cxx03/__algorithm/equal_range.h

+18-18
Original file line numberDiff line numberDiff line change
@@ -9,30 +9,30 @@
99
#ifndef _LIBCPP___ALGORITHM_EQUAL_RANGE_H
1010
#define _LIBCPP___ALGORITHM_EQUAL_RANGE_H
1111

12-
#include <__algorithm/comp.h>
13-
#include <__algorithm/comp_ref_type.h>
14-
#include <__algorithm/half_positive.h>
15-
#include <__algorithm/iterator_operations.h>
16-
#include <__algorithm/lower_bound.h>
17-
#include <__algorithm/upper_bound.h>
18-
#include <__config>
19-
#include <__functional/identity.h>
20-
#include <__functional/invoke.h>
21-
#include <__iterator/advance.h>
22-
#include <__iterator/distance.h>
23-
#include <__iterator/iterator_traits.h>
24-
#include <__iterator/next.h>
25-
#include <__type_traits/is_callable.h>
26-
#include <__type_traits/is_constructible.h>
27-
#include <__utility/move.h>
28-
#include <__utility/pair.h>
12+
#include <__cxx03/__algorithm/comp.h>
13+
#include <__cxx03/__algorithm/comp_ref_type.h>
14+
#include <__cxx03/__algorithm/half_positive.h>
15+
#include <__cxx03/__algorithm/iterator_operations.h>
16+
#include <__cxx03/__algorithm/lower_bound.h>
17+
#include <__cxx03/__algorithm/upper_bound.h>
18+
#include <__cxx03/__config>
19+
#include <__cxx03/__functional/identity.h>
20+
#include <__cxx03/__functional/invoke.h>
21+
#include <__cxx03/__iterator/advance.h>
22+
#include <__cxx03/__iterator/distance.h>
23+
#include <__cxx03/__iterator/iterator_traits.h>
24+
#include <__cxx03/__iterator/next.h>
25+
#include <__cxx03/__type_traits/is_callable.h>
26+
#include <__cxx03/__type_traits/is_constructible.h>
27+
#include <__cxx03/__utility/move.h>
28+
#include <__cxx03/__utility/pair.h>
2929

3030
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
3131
# pragma GCC system_header
3232
#endif
3333

3434
_LIBCPP_PUSH_MACROS
35-
#include <__undef_macros>
35+
#include <__cxx03/__undef_macros>
3636

3737
_LIBCPP_BEGIN_NAMESPACE_STD
3838

libcxx/include/__cxx03/__algorithm/fill.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
#ifndef _LIBCPP___ALGORITHM_FILL_H
1010
#define _LIBCPP___ALGORITHM_FILL_H
1111

12-
#include <__algorithm/fill_n.h>
13-
#include <__config>
14-
#include <__iterator/iterator_traits.h>
12+
#include <__cxx03/__algorithm/fill_n.h>
13+
#include <__cxx03/__config>
14+
#include <__cxx03/__iterator/iterator_traits.h>
1515

1616
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
1717
# pragma GCC system_header

0 commit comments

Comments
 (0)