diff --git a/libcxx/cmake/Modules/HandleLibCXXABI.cmake b/libcxx/cmake/Modules/HandleLibCXXABI.cmake index 5b92ebb765a8..d69405ddeeac 100644 --- a/libcxx/cmake/Modules/HandleLibCXXABI.cmake +++ b/libcxx/cmake/Modules/HandleLibCXXABI.cmake @@ -117,7 +117,7 @@ elseif ("${LIBCXX_CXX_ABI_LIBNAME}" STREQUAL "libcxxabi") setup_abi_lib( "-DLIBCXX_BUILDING_LIBCXXABI" - "${shared}" "${static}" "cxxabi.h;__cxxabi_config.h;threading_support.h" "") + "${shared}" "${static}" "cxxabi.h;__cxxabi_config.h" "") elseif ("${LIBCXX_CXX_ABI_LIBNAME}" STREQUAL "libcxxrt") if(NOT LIBCXX_CXX_ABI_INCLUDE_PATHS) set(LIBCXX_CXX_ABI_INCLUDE_PATHS "/usr/include/c++/v1") diff --git a/libcxx/include/__algorithm/adjacent_find.h b/libcxx/include/__algorithm/adjacent_find.h index e892ff46218d..83d8c260f27a 100644 --- a/libcxx/include/__algorithm/adjacent_find.h +++ b/libcxx/include/__algorithm/adjacent_find.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/all_of.h b/libcxx/include/__algorithm/all_of.h index 7b4a52cb2287..3af32a577504 100644 --- a/libcxx/include/__algorithm/all_of.h +++ b/libcxx/include/__algorithm/all_of.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/any_of.h b/libcxx/include/__algorithm/any_of.h index 193f9bd121e0..6fe6a0b6b3c4 100644 --- a/libcxx/include/__algorithm/any_of.h +++ b/libcxx/include/__algorithm/any_of.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/binary_search.h b/libcxx/include/__algorithm/binary_search.h index 60f91f262710..15a17e1cde99 100644 --- a/libcxx/include/__algorithm/binary_search.h +++ b/libcxx/include/__algorithm/binary_search.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/clamp.h b/libcxx/include/__algorithm/clamp.h index 79eab5388e1b..b3762b85a0bc 100644 --- a/libcxx/include/__algorithm/clamp.h +++ b/libcxx/include/__algorithm/clamp.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/comp.h b/libcxx/include/__algorithm/comp.h index beb2b6802b38..62c06ae57f23 100644 --- a/libcxx/include/__algorithm/comp.h +++ b/libcxx/include/__algorithm/comp.h @@ -13,7 +13,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/comp_ref_type.h b/libcxx/include/__algorithm/comp_ref_type.h index 70993d19cefd..ed0ed5904a44 100644 --- a/libcxx/include/__algorithm/comp_ref_type.h +++ b/libcxx/include/__algorithm/comp_ref_type.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/copy.h b/libcxx/include/__algorithm/copy.h index 7c0ccb78da88..b4045cd06a2b 100644 --- a/libcxx/include/__algorithm/copy.h +++ b/libcxx/include/__algorithm/copy.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/copy_backward.h b/libcxx/include/__algorithm/copy_backward.h index cd216207928e..9754f0c95b01 100644 --- a/libcxx/include/__algorithm/copy_backward.h +++ b/libcxx/include/__algorithm/copy_backward.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/copy_if.h b/libcxx/include/__algorithm/copy_if.h index 8960ce28cc47..9c3cd29e2413 100644 --- a/libcxx/include/__algorithm/copy_if.h +++ b/libcxx/include/__algorithm/copy_if.h @@ -13,7 +13,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/copy_n.h b/libcxx/include/__algorithm/copy_n.h index 93bcea60f203..8b915af63c0d 100644 --- a/libcxx/include/__algorithm/copy_n.h +++ b/libcxx/include/__algorithm/copy_n.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/count.h b/libcxx/include/__algorithm/count.h index e29a84b97ee4..e18128cae8a8 100644 --- a/libcxx/include/__algorithm/count.h +++ b/libcxx/include/__algorithm/count.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/count_if.h b/libcxx/include/__algorithm/count_if.h index b6432e9c2551..1ec2d83394e1 100644 --- a/libcxx/include/__algorithm/count_if.h +++ b/libcxx/include/__algorithm/count_if.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/equal.h b/libcxx/include/__algorithm/equal.h index bfd3bf15f00c..ca1bc6bc5665 100644 --- a/libcxx/include/__algorithm/equal.h +++ b/libcxx/include/__algorithm/equal.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/equal_range.h b/libcxx/include/__algorithm/equal_range.h index f4654a08485b..37a2c299f0b9 100644 --- a/libcxx/include/__algorithm/equal_range.h +++ b/libcxx/include/__algorithm/equal_range.h @@ -19,7 +19,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/fill.h b/libcxx/include/__algorithm/fill.h index ecbdc502329f..be5b4740a52a 100644 --- a/libcxx/include/__algorithm/fill.h +++ b/libcxx/include/__algorithm/fill.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/fill_n.h b/libcxx/include/__algorithm/fill_n.h index 3a0aca7a365f..590c8f38f3fd 100644 --- a/libcxx/include/__algorithm/fill_n.h +++ b/libcxx/include/__algorithm/fill_n.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/find.h b/libcxx/include/__algorithm/find.h index b9ed3c8295ab..641b85e2f645 100644 --- a/libcxx/include/__algorithm/find.h +++ b/libcxx/include/__algorithm/find.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/find_end.h b/libcxx/include/__algorithm/find_end.h index 294f09ed46ff..0220c0939711 100644 --- a/libcxx/include/__algorithm/find_end.h +++ b/libcxx/include/__algorithm/find_end.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/find_first_of.h b/libcxx/include/__algorithm/find_first_of.h index 1d3f0e9606c1..b968329fc318 100644 --- a/libcxx/include/__algorithm/find_first_of.h +++ b/libcxx/include/__algorithm/find_first_of.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/find_if.h b/libcxx/include/__algorithm/find_if.h index 8fc59b5a322e..aa98171a1f61 100644 --- a/libcxx/include/__algorithm/find_if.h +++ b/libcxx/include/__algorithm/find_if.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/find_if_not.h b/libcxx/include/__algorithm/find_if_not.h index 58fc6c3a9c9d..61ddab0b9805 100644 --- a/libcxx/include/__algorithm/find_if_not.h +++ b/libcxx/include/__algorithm/find_if_not.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/for_each.h b/libcxx/include/__algorithm/for_each.h index 4d869eaf9c93..bfbd37c3a3a4 100644 --- a/libcxx/include/__algorithm/for_each.h +++ b/libcxx/include/__algorithm/for_each.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/for_each_n.h b/libcxx/include/__algorithm/for_each_n.h index 75245c39b757..2552b40c2781 100644 --- a/libcxx/include/__algorithm/for_each_n.h +++ b/libcxx/include/__algorithm/for_each_n.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/generate.h b/libcxx/include/__algorithm/generate.h index 0b49f36dc8da..dacbd8c68195 100644 --- a/libcxx/include/__algorithm/generate.h +++ b/libcxx/include/__algorithm/generate.h @@ -13,7 +13,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/generate_n.h b/libcxx/include/__algorithm/generate_n.h index 0184c1f490fd..2650e9e5d8b7 100644 --- a/libcxx/include/__algorithm/generate_n.h +++ b/libcxx/include/__algorithm/generate_n.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/half_positive.h b/libcxx/include/__algorithm/half_positive.h index a3d7e18959b6..7666ef1449c6 100644 --- a/libcxx/include/__algorithm/half_positive.h +++ b/libcxx/include/__algorithm/half_positive.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/in_found_result.h b/libcxx/include/__algorithm/in_found_result.h index 9cbcd319babc..08ebf2fbcc1a 100644 --- a/libcxx/include/__algorithm/in_found_result.h +++ b/libcxx/include/__algorithm/in_found_result.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #if !defined(_LIBCPP_HAS_NO_CONCEPTS) && !defined(_LIBCPP_HAS_NO_INCOMPLETE_RANGES) diff --git a/libcxx/include/__algorithm/in_fun_result.h b/libcxx/include/__algorithm/in_fun_result.h index d971bc3000c3..d5186e11b7ea 100644 --- a/libcxx/include/__algorithm/in_fun_result.h +++ b/libcxx/include/__algorithm/in_fun_result.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/in_in_out_result.h b/libcxx/include/__algorithm/in_in_out_result.h index 5b1722607461..f7cb698472fb 100644 --- a/libcxx/include/__algorithm/in_in_out_result.h +++ b/libcxx/include/__algorithm/in_in_out_result.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/in_in_result.h b/libcxx/include/__algorithm/in_in_result.h index 0de12db28b73..159092189a53 100644 --- a/libcxx/include/__algorithm/in_in_result.h +++ b/libcxx/include/__algorithm/in_in_result.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/in_out_out_result.h b/libcxx/include/__algorithm/in_out_out_result.h index d429d4fea443..9788fbfa2e74 100644 --- a/libcxx/include/__algorithm/in_out_out_result.h +++ b/libcxx/include/__algorithm/in_out_out_result.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/in_out_result.h b/libcxx/include/__algorithm/in_out_result.h index 6edd15dfe789..fd394a36211b 100644 --- a/libcxx/include/__algorithm/in_out_result.h +++ b/libcxx/include/__algorithm/in_out_result.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/includes.h b/libcxx/include/__algorithm/includes.h index ec7d83119a9f..4c87e8d22116 100644 --- a/libcxx/include/__algorithm/includes.h +++ b/libcxx/include/__algorithm/includes.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/inplace_merge.h b/libcxx/include/__algorithm/inplace_merge.h index d22c26dde00f..90ca152c5b3a 100644 --- a/libcxx/include/__algorithm/inplace_merge.h +++ b/libcxx/include/__algorithm/inplace_merge.h @@ -23,7 +23,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__algorithm/is_heap.h b/libcxx/include/__algorithm/is_heap.h index cf57ef1b3797..fe44e634f6dd 100644 --- a/libcxx/include/__algorithm/is_heap.h +++ b/libcxx/include/__algorithm/is_heap.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/is_heap_until.h b/libcxx/include/__algorithm/is_heap_until.h index f39cf9dcc846..39f313eb0d3f 100644 --- a/libcxx/include/__algorithm/is_heap_until.h +++ b/libcxx/include/__algorithm/is_heap_until.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/is_partitioned.h b/libcxx/include/__algorithm/is_partitioned.h index 849fdabe1481..b4f421cfc053 100644 --- a/libcxx/include/__algorithm/is_partitioned.h +++ b/libcxx/include/__algorithm/is_partitioned.h @@ -13,7 +13,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/is_permutation.h b/libcxx/include/__algorithm/is_permutation.h index 2a58dcfb21eb..cdd742048412 100644 --- a/libcxx/include/__algorithm/is_permutation.h +++ b/libcxx/include/__algorithm/is_permutation.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/is_sorted.h b/libcxx/include/__algorithm/is_sorted.h index b4bc21b54eaa..56de95bb31b7 100644 --- a/libcxx/include/__algorithm/is_sorted.h +++ b/libcxx/include/__algorithm/is_sorted.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/is_sorted_until.h b/libcxx/include/__algorithm/is_sorted_until.h index c9200737b524..338d28508c17 100644 --- a/libcxx/include/__algorithm/is_sorted_until.h +++ b/libcxx/include/__algorithm/is_sorted_until.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/iter_swap.h b/libcxx/include/__algorithm/iter_swap.h index 89633252630e..038859e1361d 100644 --- a/libcxx/include/__algorithm/iter_swap.h +++ b/libcxx/include/__algorithm/iter_swap.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/lexicographical_compare.h b/libcxx/include/__algorithm/lexicographical_compare.h index 26ae99da7bbb..30ddf2408120 100644 --- a/libcxx/include/__algorithm/lexicographical_compare.h +++ b/libcxx/include/__algorithm/lexicographical_compare.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/lower_bound.h b/libcxx/include/__algorithm/lower_bound.h index 6bac873693bb..26b64ec12d30 100644 --- a/libcxx/include/__algorithm/lower_bound.h +++ b/libcxx/include/__algorithm/lower_bound.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/make_heap.h b/libcxx/include/__algorithm/make_heap.h index 7e1b9a2a5df7..acac0aabf1e4 100644 --- a/libcxx/include/__algorithm/make_heap.h +++ b/libcxx/include/__algorithm/make_heap.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/max.h b/libcxx/include/__algorithm/max.h index f41a29ce4f4a..345b235a2193 100644 --- a/libcxx/include/__algorithm/max.h +++ b/libcxx/include/__algorithm/max.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__algorithm/max_element.h b/libcxx/include/__algorithm/max_element.h index ce1dfae37448..795ec8e1ddc1 100644 --- a/libcxx/include/__algorithm/max_element.h +++ b/libcxx/include/__algorithm/max_element.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/merge.h b/libcxx/include/__algorithm/merge.h index 82855fac992c..48360ed5b445 100644 --- a/libcxx/include/__algorithm/merge.h +++ b/libcxx/include/__algorithm/merge.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/min.h b/libcxx/include/__algorithm/min.h index 7a092fe97a1b..3d8c73d78f11 100644 --- a/libcxx/include/__algorithm/min.h +++ b/libcxx/include/__algorithm/min.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__algorithm/min_element.h b/libcxx/include/__algorithm/min_element.h index b8da52b236f8..129833d42bda 100644 --- a/libcxx/include/__algorithm/min_element.h +++ b/libcxx/include/__algorithm/min_element.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/min_max_result.h b/libcxx/include/__algorithm/min_max_result.h index 9d0226af6332..1d56a741f5bc 100644 --- a/libcxx/include/__algorithm/min_max_result.h +++ b/libcxx/include/__algorithm/min_max_result.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__algorithm/minmax.h b/libcxx/include/__algorithm/minmax.h index fddfcc64f698..30a119491a36 100644 --- a/libcxx/include/__algorithm/minmax.h +++ b/libcxx/include/__algorithm/minmax.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/minmax_element.h b/libcxx/include/__algorithm/minmax_element.h index 38e280d97dbf..80afbdf87abe 100644 --- a/libcxx/include/__algorithm/minmax_element.h +++ b/libcxx/include/__algorithm/minmax_element.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/mismatch.h b/libcxx/include/__algorithm/mismatch.h index d919e142cb0f..f2011faf2f9a 100644 --- a/libcxx/include/__algorithm/mismatch.h +++ b/libcxx/include/__algorithm/mismatch.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/move.h b/libcxx/include/__algorithm/move.h index 77692255e213..72bf3d76ea5b 100644 --- a/libcxx/include/__algorithm/move.h +++ b/libcxx/include/__algorithm/move.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/move_backward.h b/libcxx/include/__algorithm/move_backward.h index 38d361d15a47..a56f6b826ce3 100644 --- a/libcxx/include/__algorithm/move_backward.h +++ b/libcxx/include/__algorithm/move_backward.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/next_permutation.h b/libcxx/include/__algorithm/next_permutation.h index 1ea0b0db68f6..05e56f4a17ff 100644 --- a/libcxx/include/__algorithm/next_permutation.h +++ b/libcxx/include/__algorithm/next_permutation.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/none_of.h b/libcxx/include/__algorithm/none_of.h index d9dbec0cefcd..b34b1e00ddb8 100644 --- a/libcxx/include/__algorithm/none_of.h +++ b/libcxx/include/__algorithm/none_of.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/nth_element.h b/libcxx/include/__algorithm/nth_element.h index fb754fbd68d9..0f9f66d3ca66 100644 --- a/libcxx/include/__algorithm/nth_element.h +++ b/libcxx/include/__algorithm/nth_element.h @@ -22,7 +22,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/partial_sort.h b/libcxx/include/__algorithm/partial_sort.h index 9714e4ff45dd..8adf5b2f4f45 100644 --- a/libcxx/include/__algorithm/partial_sort.h +++ b/libcxx/include/__algorithm/partial_sort.h @@ -24,7 +24,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/partial_sort_copy.h b/libcxx/include/__algorithm/partial_sort_copy.h index 5a11963d675f..7ed1e538e9b8 100644 --- a/libcxx/include/__algorithm/partial_sort_copy.h +++ b/libcxx/include/__algorithm/partial_sort_copy.h @@ -19,7 +19,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/partition.h b/libcxx/include/__algorithm/partition.h index d2ed4b419d86..73d94831ed87 100644 --- a/libcxx/include/__algorithm/partition.h +++ b/libcxx/include/__algorithm/partition.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/partition_copy.h b/libcxx/include/__algorithm/partition_copy.h index a53916eedcbf..cacde0bfd47b 100644 --- a/libcxx/include/__algorithm/partition_copy.h +++ b/libcxx/include/__algorithm/partition_copy.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/partition_point.h b/libcxx/include/__algorithm/partition_point.h index 24fd5d88ba2b..c2fa841edc6d 100644 --- a/libcxx/include/__algorithm/partition_point.h +++ b/libcxx/include/__algorithm/partition_point.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/pop_heap.h b/libcxx/include/__algorithm/pop_heap.h index 6680369477a4..2a69f6ee47f0 100644 --- a/libcxx/include/__algorithm/pop_heap.h +++ b/libcxx/include/__algorithm/pop_heap.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/prev_permutation.h b/libcxx/include/__algorithm/prev_permutation.h index 2f127eab4583..9dbc1dad0124 100644 --- a/libcxx/include/__algorithm/prev_permutation.h +++ b/libcxx/include/__algorithm/prev_permutation.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/push_heap.h b/libcxx/include/__algorithm/push_heap.h index 8ff6df4784d9..66973e082f14 100644 --- a/libcxx/include/__algorithm/push_heap.h +++ b/libcxx/include/__algorithm/push_heap.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/ranges_min_element.h b/libcxx/include/__algorithm/ranges_min_element.h index 218cfce1f196..82aaeea1c846 100644 --- a/libcxx/include/__algorithm/ranges_min_element.h +++ b/libcxx/include/__algorithm/ranges_min_element.h @@ -22,7 +22,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #if !defined(_LIBCPP_HAS_NO_CONCEPTS) && !defined(_LIBCPP_HAS_NO_INCOMPLETE_RANGES) diff --git a/libcxx/include/__algorithm/ranges_swap_ranges.h b/libcxx/include/__algorithm/ranges_swap_ranges.h index b05bff2e3dc6..59a875ae3bb2 100644 --- a/libcxx/include/__algorithm/ranges_swap_ranges.h +++ b/libcxx/include/__algorithm/ranges_swap_ranges.h @@ -20,7 +20,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #ifndef _LIBCPP_HAS_NO_CONCEPTS diff --git a/libcxx/include/__algorithm/remove.h b/libcxx/include/__algorithm/remove.h index 88bf9b43b7db..c00f96f78a63 100644 --- a/libcxx/include/__algorithm/remove.h +++ b/libcxx/include/__algorithm/remove.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/remove_copy.h b/libcxx/include/__algorithm/remove_copy.h index 411723f2d098..a29a385af9ac 100644 --- a/libcxx/include/__algorithm/remove_copy.h +++ b/libcxx/include/__algorithm/remove_copy.h @@ -13,7 +13,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/remove_copy_if.h b/libcxx/include/__algorithm/remove_copy_if.h index 0dbe6fd5aada..36ddba4883ab 100644 --- a/libcxx/include/__algorithm/remove_copy_if.h +++ b/libcxx/include/__algorithm/remove_copy_if.h @@ -13,7 +13,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/remove_if.h b/libcxx/include/__algorithm/remove_if.h index 59746434c1bc..0ae131498d22 100644 --- a/libcxx/include/__algorithm/remove_if.h +++ b/libcxx/include/__algorithm/remove_if.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/replace.h b/libcxx/include/__algorithm/replace.h index 345440305bd4..d0ae8f65d4a2 100644 --- a/libcxx/include/__algorithm/replace.h +++ b/libcxx/include/__algorithm/replace.h @@ -13,7 +13,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/replace_copy.h b/libcxx/include/__algorithm/replace_copy.h index f260c819382e..7c8a5a0b93cb 100644 --- a/libcxx/include/__algorithm/replace_copy.h +++ b/libcxx/include/__algorithm/replace_copy.h @@ -13,7 +13,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/replace_copy_if.h b/libcxx/include/__algorithm/replace_copy_if.h index 2dc6f6bba504..9d8a68fdc0f3 100644 --- a/libcxx/include/__algorithm/replace_copy_if.h +++ b/libcxx/include/__algorithm/replace_copy_if.h @@ -13,7 +13,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/replace_if.h b/libcxx/include/__algorithm/replace_if.h index c5a06f814075..37c719a34c84 100644 --- a/libcxx/include/__algorithm/replace_if.h +++ b/libcxx/include/__algorithm/replace_if.h @@ -13,7 +13,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/reverse.h b/libcxx/include/__algorithm/reverse.h index 1bde1b0dc791..0202cd740833 100644 --- a/libcxx/include/__algorithm/reverse.h +++ b/libcxx/include/__algorithm/reverse.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/reverse_copy.h b/libcxx/include/__algorithm/reverse_copy.h index 9db7379545a3..158390707803 100644 --- a/libcxx/include/__algorithm/reverse_copy.h +++ b/libcxx/include/__algorithm/reverse_copy.h @@ -13,7 +13,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/rotate.h b/libcxx/include/__algorithm/rotate.h index 61e5cf1db081..344c2f8cc9ff 100644 --- a/libcxx/include/__algorithm/rotate.h +++ b/libcxx/include/__algorithm/rotate.h @@ -21,7 +21,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/rotate_copy.h b/libcxx/include/__algorithm/rotate_copy.h index 7dc29dcda589..ab569ef7c6be 100644 --- a/libcxx/include/__algorithm/rotate_copy.h +++ b/libcxx/include/__algorithm/rotate_copy.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/sample.h b/libcxx/include/__algorithm/sample.h index e8b9ebfbb6be..523496108217 100644 --- a/libcxx/include/__algorithm/sample.h +++ b/libcxx/include/__algorithm/sample.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__algorithm/search.h b/libcxx/include/__algorithm/search.h index 6d1d77f8da67..d89ec2b1c5bc 100644 --- a/libcxx/include/__algorithm/search.h +++ b/libcxx/include/__algorithm/search.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/search_n.h b/libcxx/include/__algorithm/search_n.h index 5e563b580184..4c083de65ee2 100644 --- a/libcxx/include/__algorithm/search_n.h +++ b/libcxx/include/__algorithm/search_n.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/set_difference.h b/libcxx/include/__algorithm/set_difference.h index 23eae01a9dee..5e2dca24e446 100644 --- a/libcxx/include/__algorithm/set_difference.h +++ b/libcxx/include/__algorithm/set_difference.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/set_intersection.h b/libcxx/include/__algorithm/set_intersection.h index 563ee66e78d6..c4163fcd4c3c 100644 --- a/libcxx/include/__algorithm/set_intersection.h +++ b/libcxx/include/__algorithm/set_intersection.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/set_symmetric_difference.h b/libcxx/include/__algorithm/set_symmetric_difference.h index 1e0d3257a236..2dbfb35d7be6 100644 --- a/libcxx/include/__algorithm/set_symmetric_difference.h +++ b/libcxx/include/__algorithm/set_symmetric_difference.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/set_union.h b/libcxx/include/__algorithm/set_union.h index 78ee9e27fc74..0ec6b09380ed 100644 --- a/libcxx/include/__algorithm/set_union.h +++ b/libcxx/include/__algorithm/set_union.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/shift_left.h b/libcxx/include/__algorithm/shift_left.h index 51710094a7a3..33f06d57e23a 100644 --- a/libcxx/include/__algorithm/shift_left.h +++ b/libcxx/include/__algorithm/shift_left.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/shift_right.h b/libcxx/include/__algorithm/shift_right.h index 65d52d3d5395..14bc761598b2 100644 --- a/libcxx/include/__algorithm/shift_right.h +++ b/libcxx/include/__algorithm/shift_right.h @@ -19,7 +19,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/shuffle.h b/libcxx/include/__algorithm/shuffle.h index 123a6a7b62e0..647aa3f06718 100644 --- a/libcxx/include/__algorithm/shuffle.h +++ b/libcxx/include/__algorithm/shuffle.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__algorithm/sift_down.h b/libcxx/include/__algorithm/sift_down.h index b61715344608..b636da78b0cc 100644 --- a/libcxx/include/__algorithm/sift_down.h +++ b/libcxx/include/__algorithm/sift_down.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/sort.h b/libcxx/include/__algorithm/sort.h index 315945273c3a..27ce647c8129 100644 --- a/libcxx/include/__algorithm/sort.h +++ b/libcxx/include/__algorithm/sort.h @@ -24,7 +24,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/sort_heap.h b/libcxx/include/__algorithm/sort_heap.h index 9ab129ad2dd5..3a63d744fc1c 100644 --- a/libcxx/include/__algorithm/sort_heap.h +++ b/libcxx/include/__algorithm/sort_heap.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/stable_partition.h b/libcxx/include/__algorithm/stable_partition.h index 9e13234bd698..1233cc157fb5 100644 --- a/libcxx/include/__algorithm/stable_partition.h +++ b/libcxx/include/__algorithm/stable_partition.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/stable_sort.h b/libcxx/include/__algorithm/stable_sort.h index 865806959084..33df6e8ba75f 100644 --- a/libcxx/include/__algorithm/stable_sort.h +++ b/libcxx/include/__algorithm/stable_sort.h @@ -21,7 +21,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/swap_ranges.h b/libcxx/include/__algorithm/swap_ranges.h index 4d7844ddd18a..0422265bb4be 100644 --- a/libcxx/include/__algorithm/swap_ranges.h +++ b/libcxx/include/__algorithm/swap_ranges.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/transform.h b/libcxx/include/__algorithm/transform.h index 2983b7176352..f9db806f5b94 100644 --- a/libcxx/include/__algorithm/transform.h +++ b/libcxx/include/__algorithm/transform.h @@ -13,7 +13,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/unique.h b/libcxx/include/__algorithm/unique.h index cb80ee3765fa..264d727d93c8 100644 --- a/libcxx/include/__algorithm/unique.h +++ b/libcxx/include/__algorithm/unique.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/unique_copy.h b/libcxx/include/__algorithm/unique_copy.h index 4cb861dc8374..f58517749f51 100644 --- a/libcxx/include/__algorithm/unique_copy.h +++ b/libcxx/include/__algorithm/unique_copy.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/unwrap_iter.h b/libcxx/include/__algorithm/unwrap_iter.h index bbadd53aa939..e738cb26fcd8 100644 --- a/libcxx/include/__algorithm/unwrap_iter.h +++ b/libcxx/include/__algorithm/unwrap_iter.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__algorithm/upper_bound.h b/libcxx/include/__algorithm/upper_bound.h index a4963cf9ecb6..cfa021e14247 100644 --- a/libcxx/include/__algorithm/upper_bound.h +++ b/libcxx/include/__algorithm/upper_bound.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__bit/bit_cast.h b/libcxx/include/__bit/bit_cast.h index 589594b06fe2..fbb70b3b46f6 100644 --- a/libcxx/include/__bit/bit_cast.h +++ b/libcxx/include/__bit/bit_cast.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__bit/byteswap.h b/libcxx/include/__bit/byteswap.h index 6bb1980b53ab..970074ed98ce 100644 --- a/libcxx/include/__bit/byteswap.h +++ b/libcxx/include/__bit/byteswap.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__bit_reference b/libcxx/include/__bit_reference index 7c0f332fa881..423acee4aa7c 100644 --- a/libcxx/include/__bit_reference +++ b/libcxx/include/__bit_reference @@ -20,8 +20,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__bits b/libcxx/include/__bits index 56508e169ad7..1eee8f576e9e 100644 --- a/libcxx/include/__bits +++ b/libcxx/include/__bits @@ -14,14 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() -# pragma clang include_instead() -# pragma clang include_instead() -# pragma clang include_instead() -# pragma clang include_instead() -# pragma clang include_instead() -# pragma clang include_instead() -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__charconv/chars_format.h b/libcxx/include/__charconv/chars_format.h index 59e17dffaa24..0875079e6c7a 100644 --- a/libcxx/include/__charconv/chars_format.h +++ b/libcxx/include/__charconv/chars_format.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__charconv/from_chars_result.h b/libcxx/include/__charconv/from_chars_result.h index e2815670e189..2cc3c11ef64f 100644 --- a/libcxx/include/__charconv/from_chars_result.h +++ b/libcxx/include/__charconv/from_chars_result.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__charconv/to_chars_result.h b/libcxx/include/__charconv/to_chars_result.h index c0e3a9a0c17b..b4bc6ac2635b 100644 --- a/libcxx/include/__charconv/to_chars_result.h +++ b/libcxx/include/__charconv/to_chars_result.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__chrono/calendar.h b/libcxx/include/__chrono/calendar.h index f9feab8e299b..9e5642f75811 100644 --- a/libcxx/include/__chrono/calendar.h +++ b/libcxx/include/__chrono/calendar.h @@ -20,7 +20,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__chrono/convert_to_timespec.h b/libcxx/include/__chrono/convert_to_timespec.h index 23c6415f6303..e8631d135fee 100644 --- a/libcxx/include/__chrono/convert_to_timespec.h +++ b/libcxx/include/__chrono/convert_to_timespec.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__chrono/duration.h b/libcxx/include/__chrono/duration.h index 1097412ee6b4..f5207594291e 100644 --- a/libcxx/include/__chrono/duration.h +++ b/libcxx/include/__chrono/duration.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__chrono/file_clock.h b/libcxx/include/__chrono/file_clock.h index f2bbdb31d094..b8e08e78ba72 100644 --- a/libcxx/include/__chrono/file_clock.h +++ b/libcxx/include/__chrono/file_clock.h @@ -19,7 +19,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #ifndef _LIBCPP_CXX03_LANG diff --git a/libcxx/include/__chrono/high_resolution_clock.h b/libcxx/include/__chrono/high_resolution_clock.h index 36c9d3ff808f..778ff44f3d09 100644 --- a/libcxx/include/__chrono/high_resolution_clock.h +++ b/libcxx/include/__chrono/high_resolution_clock.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__chrono/steady_clock.h b/libcxx/include/__chrono/steady_clock.h index 9827601f2308..657e5eef6c37 100644 --- a/libcxx/include/__chrono/steady_clock.h +++ b/libcxx/include/__chrono/steady_clock.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__chrono/system_clock.h b/libcxx/include/__chrono/system_clock.h index 972da259cf40..2922b78a74cb 100644 --- a/libcxx/include/__chrono/system_clock.h +++ b/libcxx/include/__chrono/system_clock.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__chrono/time_point.h b/libcxx/include/__chrono/time_point.h index 3ac44e71663a..ac2d347a0dca 100644 --- a/libcxx/include/__chrono/time_point.h +++ b/libcxx/include/__chrono/time_point.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__compare/common_comparison_category.h b/libcxx/include/__compare/common_comparison_category.h index 9538f3ff9568..deab171846e2 100644 --- a/libcxx/include/__compare/common_comparison_category.h +++ b/libcxx/include/__compare/common_comparison_category.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__compare/compare_partial_order_fallback.h b/libcxx/include/__compare/compare_partial_order_fallback.h index a40340309747..b1fd5e82bb46 100644 --- a/libcxx/include/__compare/compare_partial_order_fallback.h +++ b/libcxx/include/__compare/compare_partial_order_fallback.h @@ -18,7 +18,6 @@ #ifndef _LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__compare/compare_strong_order_fallback.h b/libcxx/include/__compare/compare_strong_order_fallback.h index fdcd60aa2137..9365a1ef036c 100644 --- a/libcxx/include/__compare/compare_strong_order_fallback.h +++ b/libcxx/include/__compare/compare_strong_order_fallback.h @@ -18,7 +18,6 @@ #ifndef _LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__compare/compare_three_way.h b/libcxx/include/__compare/compare_three_way.h index 5445afa4dd0d..25563bb7fec0 100644 --- a/libcxx/include/__compare/compare_three_way.h +++ b/libcxx/include/__compare/compare_three_way.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__compare/compare_three_way_result.h b/libcxx/include/__compare/compare_three_way_result.h index bdcce13369c7..7b03597ab1c1 100644 --- a/libcxx/include/__compare/compare_three_way_result.h +++ b/libcxx/include/__compare/compare_three_way_result.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__compare/compare_weak_order_fallback.h b/libcxx/include/__compare/compare_weak_order_fallback.h index d72c1eee9d73..160e45ecb549 100644 --- a/libcxx/include/__compare/compare_weak_order_fallback.h +++ b/libcxx/include/__compare/compare_weak_order_fallback.h @@ -18,7 +18,6 @@ #ifndef _LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__compare/is_eq.h b/libcxx/include/__compare/is_eq.h index fcf9e6cc32f5..49648924e81f 100644 --- a/libcxx/include/__compare/is_eq.h +++ b/libcxx/include/__compare/is_eq.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__compare/ordering.h b/libcxx/include/__compare/ordering.h index 7913129768cb..1d466d669eec 100644 --- a/libcxx/include/__compare/ordering.h +++ b/libcxx/include/__compare/ordering.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__compare/partial_order.h b/libcxx/include/__compare/partial_order.h index f3d8e633dd81..ad29701875b9 100644 --- a/libcxx/include/__compare/partial_order.h +++ b/libcxx/include/__compare/partial_order.h @@ -19,7 +19,6 @@ #ifndef _LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__compare/strong_order.h b/libcxx/include/__compare/strong_order.h index 6e1e28585239..49a610666354 100644 --- a/libcxx/include/__compare/strong_order.h +++ b/libcxx/include/__compare/strong_order.h @@ -22,7 +22,6 @@ #ifndef _LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__compare/synth_three_way.h b/libcxx/include/__compare/synth_three_way.h index 1d153420bf55..f55edd4876b5 100644 --- a/libcxx/include/__compare/synth_three_way.h +++ b/libcxx/include/__compare/synth_three_way.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__compare/three_way_comparable.h b/libcxx/include/__compare/three_way_comparable.h index 7fdf9feaac28..f17382e43078 100644 --- a/libcxx/include/__compare/three_way_comparable.h +++ b/libcxx/include/__compare/three_way_comparable.h @@ -20,7 +20,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__compare/weak_order.h b/libcxx/include/__compare/weak_order.h index c02011fbb29a..725ac831e66b 100644 --- a/libcxx/include/__compare/weak_order.h +++ b/libcxx/include/__compare/weak_order.h @@ -20,7 +20,6 @@ #ifndef _LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__concepts/arithmetic.h b/libcxx/include/__concepts/arithmetic.h index b9a1d2a7cd97..f86908cfdff3 100644 --- a/libcxx/include/__concepts/arithmetic.h +++ b/libcxx/include/__concepts/arithmetic.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__concepts/assignable.h b/libcxx/include/__concepts/assignable.h index 7f28afceea6e..4d8a230ff4e9 100644 --- a/libcxx/include/__concepts/assignable.h +++ b/libcxx/include/__concepts/assignable.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__concepts/boolean_testable.h b/libcxx/include/__concepts/boolean_testable.h index 222c35fc469f..89f66201e644 100644 --- a/libcxx/include/__concepts/boolean_testable.h +++ b/libcxx/include/__concepts/boolean_testable.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__concepts/class_or_enum.h b/libcxx/include/__concepts/class_or_enum.h index e3c0f6f6f273..729e444b39ad 100644 --- a/libcxx/include/__concepts/class_or_enum.h +++ b/libcxx/include/__concepts/class_or_enum.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__concepts/common_reference_with.h b/libcxx/include/__concepts/common_reference_with.h index a16a59bf2bd1..bb5801a8c1ac 100644 --- a/libcxx/include/__concepts/common_reference_with.h +++ b/libcxx/include/__concepts/common_reference_with.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__concepts/common_with.h b/libcxx/include/__concepts/common_with.h index f1661a67b464..2b7cb836d63f 100644 --- a/libcxx/include/__concepts/common_with.h +++ b/libcxx/include/__concepts/common_with.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__concepts/constructible.h b/libcxx/include/__concepts/constructible.h index 7d97490d313f..f5371086233c 100644 --- a/libcxx/include/__concepts/constructible.h +++ b/libcxx/include/__concepts/constructible.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__concepts/convertible_to.h b/libcxx/include/__concepts/convertible_to.h index 2e5d8a62b8a4..6bf19228a491 100644 --- a/libcxx/include/__concepts/convertible_to.h +++ b/libcxx/include/__concepts/convertible_to.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__concepts/copyable.h b/libcxx/include/__concepts/copyable.h index bfde9233da77..8d5f28abc424 100644 --- a/libcxx/include/__concepts/copyable.h +++ b/libcxx/include/__concepts/copyable.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__concepts/derived_from.h b/libcxx/include/__concepts/derived_from.h index 12aa88bb1b16..b91ce13fe409 100644 --- a/libcxx/include/__concepts/derived_from.h +++ b/libcxx/include/__concepts/derived_from.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__concepts/destructible.h b/libcxx/include/__concepts/destructible.h index 54941fb000da..429e82ee93fe 100644 --- a/libcxx/include/__concepts/destructible.h +++ b/libcxx/include/__concepts/destructible.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__concepts/different_from.h b/libcxx/include/__concepts/different_from.h index fdeef6422852..f882205d4a44 100644 --- a/libcxx/include/__concepts/different_from.h +++ b/libcxx/include/__concepts/different_from.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__concepts/equality_comparable.h b/libcxx/include/__concepts/equality_comparable.h index 860780265684..36ac870b6bce 100644 --- a/libcxx/include/__concepts/equality_comparable.h +++ b/libcxx/include/__concepts/equality_comparable.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__concepts/invocable.h b/libcxx/include/__concepts/invocable.h index 193e813bfe09..8a669f1f18e6 100644 --- a/libcxx/include/__concepts/invocable.h +++ b/libcxx/include/__concepts/invocable.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__concepts/movable.h b/libcxx/include/__concepts/movable.h index bb9569073238..53e36ebc3fad 100644 --- a/libcxx/include/__concepts/movable.h +++ b/libcxx/include/__concepts/movable.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__concepts/predicate.h b/libcxx/include/__concepts/predicate.h index 5e11205ade48..04cdd97f9557 100644 --- a/libcxx/include/__concepts/predicate.h +++ b/libcxx/include/__concepts/predicate.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__concepts/regular.h b/libcxx/include/__concepts/regular.h index 870b254408fb..63c9fb3ce3cf 100644 --- a/libcxx/include/__concepts/regular.h +++ b/libcxx/include/__concepts/regular.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__concepts/relation.h b/libcxx/include/__concepts/relation.h index 2bfeacdb36bb..1d687559e415 100644 --- a/libcxx/include/__concepts/relation.h +++ b/libcxx/include/__concepts/relation.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__concepts/same_as.h b/libcxx/include/__concepts/same_as.h index 12057a25a657..1337193c93cc 100644 --- a/libcxx/include/__concepts/same_as.h +++ b/libcxx/include/__concepts/same_as.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__concepts/semiregular.h b/libcxx/include/__concepts/semiregular.h index 6654ae1204cf..eac5ec28724f 100644 --- a/libcxx/include/__concepts/semiregular.h +++ b/libcxx/include/__concepts/semiregular.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__concepts/swappable.h b/libcxx/include/__concepts/swappable.h index dc185cfd5d9d..866e9f7dfd4a 100644 --- a/libcxx/include/__concepts/swappable.h +++ b/libcxx/include/__concepts/swappable.h @@ -21,7 +21,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__concepts/totally_ordered.h b/libcxx/include/__concepts/totally_ordered.h index 853b490622c7..5ede92ad086c 100644 --- a/libcxx/include/__concepts/totally_ordered.h +++ b/libcxx/include/__concepts/totally_ordered.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__coroutine/coroutine_handle.h b/libcxx/include/__coroutine/coroutine_handle.h index d16660128e30..4bf323789217 100644 --- a/libcxx/include/__coroutine/coroutine_handle.h +++ b/libcxx/include/__coroutine/coroutine_handle.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #if _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_CXX20_COROUTINES) diff --git a/libcxx/include/__coroutine/coroutine_traits.h b/libcxx/include/__coroutine/coroutine_traits.h index 1acca38e8a1c..0a5229b45945 100644 --- a/libcxx/include/__coroutine/coroutine_traits.h +++ b/libcxx/include/__coroutine/coroutine_traits.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #if _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_CXX20_COROUTINES) diff --git a/libcxx/include/__coroutine/noop_coroutine_handle.h b/libcxx/include/__coroutine/noop_coroutine_handle.h index 7ec0cb97c97d..7a2c672057cb 100644 --- a/libcxx/include/__coroutine/noop_coroutine_handle.h +++ b/libcxx/include/__coroutine/noop_coroutine_handle.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #if _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_CXX20_COROUTINES) diff --git a/libcxx/include/__coroutine/trivial_awaitables.h b/libcxx/include/__coroutine/trivial_awaitables.h index e09c0b275fb4..31399ab29a00 100644 --- a/libcxx/include/__coroutine/trivial_awaitables.h +++ b/libcxx/include/__coroutine/trivial_awaitables.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #if _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_CXX20_COROUTINES) diff --git a/libcxx/include/__filesystem/copy_options.h b/libcxx/include/__filesystem/copy_options.h index 411cec2b0bcf..2e037403f6f2 100644 --- a/libcxx/include/__filesystem/copy_options.h +++ b/libcxx/include/__filesystem/copy_options.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #ifndef _LIBCPP_CXX03_LANG diff --git a/libcxx/include/__filesystem/directory_entry.h b/libcxx/include/__filesystem/directory_entry.h index 068414089554..3db244556cfd 100644 --- a/libcxx/include/__filesystem/directory_entry.h +++ b/libcxx/include/__filesystem/directory_entry.h @@ -29,7 +29,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__filesystem/directory_iterator.h b/libcxx/include/__filesystem/directory_iterator.h index 8994427b56a9..87bbbfac717b 100644 --- a/libcxx/include/__filesystem/directory_iterator.h +++ b/libcxx/include/__filesystem/directory_iterator.h @@ -25,7 +25,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #ifndef _LIBCPP_CXX03_LANG diff --git a/libcxx/include/__filesystem/directory_options.h b/libcxx/include/__filesystem/directory_options.h index 6a721466b5cf..d3f8cc1deb21 100644 --- a/libcxx/include/__filesystem/directory_options.h +++ b/libcxx/include/__filesystem/directory_options.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #ifndef _LIBCPP_CXX03_LANG diff --git a/libcxx/include/__filesystem/file_status.h b/libcxx/include/__filesystem/file_status.h index 5adcc339b419..ac3f6cbed9d7 100644 --- a/libcxx/include/__filesystem/file_status.h +++ b/libcxx/include/__filesystem/file_status.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #ifndef _LIBCPP_CXX03_LANG diff --git a/libcxx/include/__filesystem/file_time_type.h b/libcxx/include/__filesystem/file_time_type.h index 7c4b0254af4c..7c4932e603bc 100644 --- a/libcxx/include/__filesystem/file_time_type.h +++ b/libcxx/include/__filesystem/file_time_type.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #ifndef _LIBCPP_CXX03_LANG diff --git a/libcxx/include/__filesystem/file_type.h b/libcxx/include/__filesystem/file_type.h index 24e59302e229..c756a05c848b 100644 --- a/libcxx/include/__filesystem/file_type.h +++ b/libcxx/include/__filesystem/file_type.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #ifndef _LIBCPP_CXX03_LANG diff --git a/libcxx/include/__filesystem/filesystem_error.h b/libcxx/include/__filesystem/filesystem_error.h index 0e76f397b75b..e32b14c1b7bf 100644 --- a/libcxx/include/__filesystem/filesystem_error.h +++ b/libcxx/include/__filesystem/filesystem_error.h @@ -21,7 +21,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #ifndef _LIBCPP_CXX03_LANG diff --git a/libcxx/include/__filesystem/operations.h b/libcxx/include/__filesystem/operations.h index 2f92922b36e6..85c71f017f34 100644 --- a/libcxx/include/__filesystem/operations.h +++ b/libcxx/include/__filesystem/operations.h @@ -26,7 +26,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #ifndef _LIBCPP_CXX03_LANG diff --git a/libcxx/include/__filesystem/path.h b/libcxx/include/__filesystem/path.h index c3537382f8db..6b4b1ae9baa2 100644 --- a/libcxx/include/__filesystem/path.h +++ b/libcxx/include/__filesystem/path.h @@ -28,7 +28,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #ifndef _LIBCPP_CXX03_LANG diff --git a/libcxx/include/__filesystem/path_iterator.h b/libcxx/include/__filesystem/path_iterator.h index 8be8101bb9dc..6f2baf8f7a29 100644 --- a/libcxx/include/__filesystem/path_iterator.h +++ b/libcxx/include/__filesystem/path_iterator.h @@ -21,7 +21,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #ifndef _LIBCPP_CXX03_LANG diff --git a/libcxx/include/__filesystem/perm_options.h b/libcxx/include/__filesystem/perm_options.h index 7484f75076db..f7580a2473d0 100644 --- a/libcxx/include/__filesystem/perm_options.h +++ b/libcxx/include/__filesystem/perm_options.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #ifndef _LIBCPP_CXX03_LANG diff --git a/libcxx/include/__filesystem/perms.h b/libcxx/include/__filesystem/perms.h index 3d6d1b9c1af6..0e5c7ed8d2e9 100644 --- a/libcxx/include/__filesystem/perms.h +++ b/libcxx/include/__filesystem/perms.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #ifndef _LIBCPP_CXX03_LANG diff --git a/libcxx/include/__filesystem/recursive_directory_iterator.h b/libcxx/include/__filesystem/recursive_directory_iterator.h index e17c6f81d099..95360376fc28 100644 --- a/libcxx/include/__filesystem/recursive_directory_iterator.h +++ b/libcxx/include/__filesystem/recursive_directory_iterator.h @@ -24,7 +24,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #ifndef _LIBCPP_CXX03_LANG diff --git a/libcxx/include/__filesystem/space_info.h b/libcxx/include/__filesystem/space_info.h index c220e506efdc..d7dc03af75a7 100644 --- a/libcxx/include/__filesystem/space_info.h +++ b/libcxx/include/__filesystem/space_info.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #ifndef _LIBCPP_CXX03_LANG diff --git a/libcxx/include/__filesystem/u8path.h b/libcxx/include/__filesystem/u8path.h index 82dcf8949ddd..ee25521f2898 100644 --- a/libcxx/include/__filesystem/u8path.h +++ b/libcxx/include/__filesystem/u8path.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #ifndef _LIBCPP_CXX03_LANG diff --git a/libcxx/include/__format/format_arg.h b/libcxx/include/__format/format_arg.h index 79539034d651..5e1565bf1595 100644 --- a/libcxx/include/__format/format_arg.h +++ b/libcxx/include/__format/format_arg.h @@ -24,7 +24,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__format/format_args.h b/libcxx/include/__format/format_args.h index 84cb51bdabe1..2739d1131bcb 100644 --- a/libcxx/include/__format/format_args.h +++ b/libcxx/include/__format/format_args.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__format/format_context.h b/libcxx/include/__format/format_context.h index 71d6c1cfac4d..d4bc35decda6 100644 --- a/libcxx/include/__format/format_context.h +++ b/libcxx/include/__format/format_context.h @@ -25,7 +25,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__format/format_error.h b/libcxx/include/__format/format_error.h index ee0cd9c6ec63..67ff41cbc3d8 100644 --- a/libcxx/include/__format/format_error.h +++ b/libcxx/include/__format/format_error.h @@ -19,7 +19,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__format/format_fwd.h b/libcxx/include/__format/format_fwd.h index e590f5fe1b86..9421aa878850 100644 --- a/libcxx/include/__format/format_fwd.h +++ b/libcxx/include/__format/format_fwd.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__format/format_parse_context.h b/libcxx/include/__format/format_parse_context.h index 1110f0e29672..3147be8372a7 100644 --- a/libcxx/include/__format/format_parse_context.h +++ b/libcxx/include/__format/format_parse_context.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__format/format_string.h b/libcxx/include/__format/format_string.h index b26fc484533a..32af6609e7b7 100644 --- a/libcxx/include/__format/format_string.h +++ b/libcxx/include/__format/format_string.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__format/format_to_n_result.h b/libcxx/include/__format/format_to_n_result.h index 11edcecf5bf8..b973dc5c1dfe 100644 --- a/libcxx/include/__format/format_to_n_result.h +++ b/libcxx/include/__format/format_to_n_result.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__format/formatter.h b/libcxx/include/__format/formatter.h index 1ca41606a6c6..f9e0b6c84b7b 100644 --- a/libcxx/include/__format/formatter.h +++ b/libcxx/include/__format/formatter.h @@ -25,7 +25,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__format/formatter_bool.h b/libcxx/include/__format/formatter_bool.h index d4218eebd10a..f42868365771 100644 --- a/libcxx/include/__format/formatter_bool.h +++ b/libcxx/include/__format/formatter_bool.h @@ -25,7 +25,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__format/formatter_char.h b/libcxx/include/__format/formatter_char.h index 07d408a509bd..f565135821e8 100644 --- a/libcxx/include/__format/formatter_char.h +++ b/libcxx/include/__format/formatter_char.h @@ -20,7 +20,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__format/formatter_floating_point.h b/libcxx/include/__format/formatter_floating_point.h index 557aeb73e6be..aa32815af2a4 100644 --- a/libcxx/include/__format/formatter_floating_point.h +++ b/libcxx/include/__format/formatter_floating_point.h @@ -37,7 +37,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__format/formatter_integer.h b/libcxx/include/__format/formatter_integer.h index 256ff8ad0f7a..e6143a47450f 100644 --- a/libcxx/include/__format/formatter_integer.h +++ b/libcxx/include/__format/formatter_integer.h @@ -21,7 +21,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__format/formatter_integral.h b/libcxx/include/__format/formatter_integral.h index 16577136410a..836082671c5a 100644 --- a/libcxx/include/__format/formatter_integral.h +++ b/libcxx/include/__format/formatter_integral.h @@ -33,7 +33,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__format/formatter_pointer.h b/libcxx/include/__format/formatter_pointer.h index ce7af24b2db8..83d21e1c50e6 100644 --- a/libcxx/include/__format/formatter_pointer.h +++ b/libcxx/include/__format/formatter_pointer.h @@ -24,7 +24,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__format/formatter_string.h b/libcxx/include/__format/formatter_string.h index 850cf2ecd82c..54aa1215d99e 100644 --- a/libcxx/include/__format/formatter_string.h +++ b/libcxx/include/__format/formatter_string.h @@ -21,7 +21,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__format/parser_std_format_spec.h b/libcxx/include/__format/parser_std_format_spec.h index 1ec87ea81151..92c8986e760c 100644 --- a/libcxx/include/__format/parser_std_format_spec.h +++ b/libcxx/include/__format/parser_std_format_spec.h @@ -25,7 +25,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__functional/binary_function.h b/libcxx/include/__functional/binary_function.h index 74aa70ea6e7d..51135ef51e12 100644 --- a/libcxx/include/__functional/binary_function.h +++ b/libcxx/include/__functional/binary_function.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/binary_negate.h b/libcxx/include/__functional/binary_negate.h index c0858567f612..17c5c20668f3 100644 --- a/libcxx/include/__functional/binary_negate.h +++ b/libcxx/include/__functional/binary_negate.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/bind.h b/libcxx/include/__functional/bind.h index 8a2d0b3003e0..c352406f8561 100644 --- a/libcxx/include/__functional/bind.h +++ b/libcxx/include/__functional/bind.h @@ -19,7 +19,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/bind_back.h b/libcxx/include/__functional/bind_back.h index 93cdecbbb9b9..d64981aa9eb8 100644 --- a/libcxx/include/__functional/bind_back.h +++ b/libcxx/include/__functional/bind_back.h @@ -20,7 +20,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/bind_front.h b/libcxx/include/__functional/bind_front.h index f3f96ff1cbd4..22fb3a69dc75 100644 --- a/libcxx/include/__functional/bind_front.h +++ b/libcxx/include/__functional/bind_front.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/binder1st.h b/libcxx/include/__functional/binder1st.h index 83270100bc29..13b2459dff4d 100644 --- a/libcxx/include/__functional/binder1st.h +++ b/libcxx/include/__functional/binder1st.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/binder2nd.h b/libcxx/include/__functional/binder2nd.h index 56a3b08ad1dc..ff0f5f081692 100644 --- a/libcxx/include/__functional/binder2nd.h +++ b/libcxx/include/__functional/binder2nd.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/compose.h b/libcxx/include/__functional/compose.h index 41a81f9c2083..25213f28b1f2 100644 --- a/libcxx/include/__functional/compose.h +++ b/libcxx/include/__functional/compose.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/default_searcher.h b/libcxx/include/__functional/default_searcher.h index 4ad333d52885..05fb23d7c3c4 100644 --- a/libcxx/include/__functional/default_searcher.h +++ b/libcxx/include/__functional/default_searcher.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/function.h b/libcxx/include/__functional/function.h index ee51a07207d1..4698c8c2d42e 100644 --- a/libcxx/include/__functional/function.h +++ b/libcxx/include/__functional/function.h @@ -28,7 +28,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/hash.h b/libcxx/include/__functional/hash.h index 029ba048b152..2b3b96e53421 100644 --- a/libcxx/include/__functional/hash.h +++ b/libcxx/include/__functional/hash.h @@ -24,7 +24,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/identity.h b/libcxx/include/__functional/identity.h index 1a181a37af09..646325aca496 100644 --- a/libcxx/include/__functional/identity.h +++ b/libcxx/include/__functional/identity.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/invoke.h b/libcxx/include/__functional/invoke.h index cb38c0fe2719..b4c3e76562a8 100644 --- a/libcxx/include/__functional/invoke.h +++ b/libcxx/include/__functional/invoke.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/is_transparent.h b/libcxx/include/__functional/is_transparent.h index f102bb5c6b9f..74326c76c12f 100644 --- a/libcxx/include/__functional/is_transparent.h +++ b/libcxx/include/__functional/is_transparent.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/mem_fn.h b/libcxx/include/__functional/mem_fn.h index 36fef444ce86..10967a8a14ec 100644 --- a/libcxx/include/__functional/mem_fn.h +++ b/libcxx/include/__functional/mem_fn.h @@ -19,7 +19,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/mem_fun_ref.h b/libcxx/include/__functional/mem_fun_ref.h index 9d61c4dd28ea..81f48e66e782 100644 --- a/libcxx/include/__functional/mem_fun_ref.h +++ b/libcxx/include/__functional/mem_fun_ref.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/not_fn.h b/libcxx/include/__functional/not_fn.h index 89f2d3752532..b5c415c25c44 100644 --- a/libcxx/include/__functional/not_fn.h +++ b/libcxx/include/__functional/not_fn.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/operations.h b/libcxx/include/__functional/operations.h index 482458348ccc..9df6d773fea7 100644 --- a/libcxx/include/__functional/operations.h +++ b/libcxx/include/__functional/operations.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/perfect_forward.h b/libcxx/include/__functional/perfect_forward.h index 92811e00cf9b..9acaa7e98f00 100644 --- a/libcxx/include/__functional/perfect_forward.h +++ b/libcxx/include/__functional/perfect_forward.h @@ -19,7 +19,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/pointer_to_binary_function.h b/libcxx/include/__functional/pointer_to_binary_function.h index 437b5186089e..187e3098c488 100644 --- a/libcxx/include/__functional/pointer_to_binary_function.h +++ b/libcxx/include/__functional/pointer_to_binary_function.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/pointer_to_unary_function.h b/libcxx/include/__functional/pointer_to_unary_function.h index 8984217afe7f..a0f98c1a5522 100644 --- a/libcxx/include/__functional/pointer_to_unary_function.h +++ b/libcxx/include/__functional/pointer_to_unary_function.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/ranges_operations.h b/libcxx/include/__functional/ranges_operations.h index e7afe67ad0b6..b89d59593750 100644 --- a/libcxx/include/__functional/ranges_operations.h +++ b/libcxx/include/__functional/ranges_operations.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/reference_wrapper.h b/libcxx/include/__functional/reference_wrapper.h index 6fc8182f97b6..b7d2f873022e 100644 --- a/libcxx/include/__functional/reference_wrapper.h +++ b/libcxx/include/__functional/reference_wrapper.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/unary_function.h b/libcxx/include/__functional/unary_function.h index aa091d3fd964..af2a0b967c5d 100644 --- a/libcxx/include/__functional/unary_function.h +++ b/libcxx/include/__functional/unary_function.h @@ -13,7 +13,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/unary_negate.h b/libcxx/include/__functional/unary_negate.h index c09ec84ab3ce..7ff1f6e8791d 100644 --- a/libcxx/include/__functional/unary_negate.h +++ b/libcxx/include/__functional/unary_negate.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/unwrap_ref.h b/libcxx/include/__functional/unwrap_ref.h index 8367b5fb0985..f7207934e1b4 100644 --- a/libcxx/include/__functional/unwrap_ref.h +++ b/libcxx/include/__functional/unwrap_ref.h @@ -13,7 +13,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__functional/weak_result_type.h b/libcxx/include/__functional/weak_result_type.h index 2799f0b76c76..e1c553e6f0cd 100644 --- a/libcxx/include/__functional/weak_result_type.h +++ b/libcxx/include/__functional/weak_result_type.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__hash_table b/libcxx/include/__hash_table index 4ea55c7911d3..36f2ef7a2c7a 100644 --- a/libcxx/include/__hash_table +++ b/libcxx/include/__hash_table @@ -26,8 +26,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__ios/fpos.h b/libcxx/include/__ios/fpos.h index 870cc8a9128e..87f0135fc3ea 100644 --- a/libcxx/include/__ios/fpos.h +++ b/libcxx/include/__ios/fpos.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/access.h b/libcxx/include/__iterator/access.h index fb5e88169116..7abd4c5573d6 100644 --- a/libcxx/include/__iterator/access.h +++ b/libcxx/include/__iterator/access.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/advance.h b/libcxx/include/__iterator/advance.h index 766adcee7620..da6bf052525c 100644 --- a/libcxx/include/__iterator/advance.h +++ b/libcxx/include/__iterator/advance.h @@ -24,7 +24,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/back_insert_iterator.h b/libcxx/include/__iterator/back_insert_iterator.h index 27df53524799..9a4b05703b3c 100644 --- a/libcxx/include/__iterator/back_insert_iterator.h +++ b/libcxx/include/__iterator/back_insert_iterator.h @@ -19,7 +19,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/common_iterator.h b/libcxx/include/__iterator/common_iterator.h index a1f0fc6e1f69..505e4f1f3f0d 100644 --- a/libcxx/include/__iterator/common_iterator.h +++ b/libcxx/include/__iterator/common_iterator.h @@ -23,7 +23,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/concepts.h b/libcxx/include/__iterator/concepts.h index 8f4d201d4ae9..92ef781457de 100644 --- a/libcxx/include/__iterator/concepts.h +++ b/libcxx/include/__iterator/concepts.h @@ -22,7 +22,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/counted_iterator.h b/libcxx/include/__iterator/counted_iterator.h index 76499ac7a32d..826d5de51f97 100644 --- a/libcxx/include/__iterator/counted_iterator.h +++ b/libcxx/include/__iterator/counted_iterator.h @@ -26,7 +26,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/data.h b/libcxx/include/__iterator/data.h index 6f7469ccfe39..88eb752b642e 100644 --- a/libcxx/include/__iterator/data.h +++ b/libcxx/include/__iterator/data.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/default_sentinel.h b/libcxx/include/__iterator/default_sentinel.h index 7734027c3fae..669032aa9729 100644 --- a/libcxx/include/__iterator/default_sentinel.h +++ b/libcxx/include/__iterator/default_sentinel.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/distance.h b/libcxx/include/__iterator/distance.h index 61e4157ffa8d..78b8177fae64 100644 --- a/libcxx/include/__iterator/distance.h +++ b/libcxx/include/__iterator/distance.h @@ -21,7 +21,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/empty.h b/libcxx/include/__iterator/empty.h index 7b55ddd8c242..748ca9ecbd59 100644 --- a/libcxx/include/__iterator/empty.h +++ b/libcxx/include/__iterator/empty.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/erase_if_container.h b/libcxx/include/__iterator/erase_if_container.h index d44d00656d0d..d7c71a947a2b 100644 --- a/libcxx/include/__iterator/erase_if_container.h +++ b/libcxx/include/__iterator/erase_if_container.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/front_insert_iterator.h b/libcxx/include/__iterator/front_insert_iterator.h index b7b6bc318240..69b2d32d077a 100644 --- a/libcxx/include/__iterator/front_insert_iterator.h +++ b/libcxx/include/__iterator/front_insert_iterator.h @@ -19,7 +19,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/incrementable_traits.h b/libcxx/include/__iterator/incrementable_traits.h index 2a668740875b..f36b417bf8a0 100644 --- a/libcxx/include/__iterator/incrementable_traits.h +++ b/libcxx/include/__iterator/incrementable_traits.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/indirectly_comparable.h b/libcxx/include/__iterator/indirectly_comparable.h index b14ae7d50cac..9002b21fd526 100644 --- a/libcxx/include/__iterator/indirectly_comparable.h +++ b/libcxx/include/__iterator/indirectly_comparable.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/insert_iterator.h b/libcxx/include/__iterator/insert_iterator.h index dc260abf4a8e..aba197ec2190 100644 --- a/libcxx/include/__iterator/insert_iterator.h +++ b/libcxx/include/__iterator/insert_iterator.h @@ -20,7 +20,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/istream_iterator.h b/libcxx/include/__iterator/istream_iterator.h index d5241a9aab6b..9ee0a989b8f6 100644 --- a/libcxx/include/__iterator/istream_iterator.h +++ b/libcxx/include/__iterator/istream_iterator.h @@ -19,7 +19,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/istreambuf_iterator.h b/libcxx/include/__iterator/istreambuf_iterator.h index 3f2bb4f532c5..3b16f7947678 100644 --- a/libcxx/include/__iterator/istreambuf_iterator.h +++ b/libcxx/include/__iterator/istreambuf_iterator.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/iter_move.h b/libcxx/include/__iterator/iter_move.h index 351077380ea0..4a8966292786 100644 --- a/libcxx/include/__iterator/iter_move.h +++ b/libcxx/include/__iterator/iter_move.h @@ -19,7 +19,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/iter_swap.h b/libcxx/include/__iterator/iter_swap.h index dec8ce79be29..291558fadc06 100644 --- a/libcxx/include/__iterator/iter_swap.h +++ b/libcxx/include/__iterator/iter_swap.h @@ -21,7 +21,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/iterator.h b/libcxx/include/__iterator/iterator.h index e7f74368efe8..b417eeab79bf 100644 --- a/libcxx/include/__iterator/iterator.h +++ b/libcxx/include/__iterator/iterator.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/iterator_traits.h b/libcxx/include/__iterator/iterator_traits.h index 58aef847fc74..6ffb2ab806ff 100644 --- a/libcxx/include/__iterator/iterator_traits.h +++ b/libcxx/include/__iterator/iterator_traits.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/mergeable.h b/libcxx/include/__iterator/mergeable.h index f8d1cf6ebb7e..13db6c7f0bb2 100644 --- a/libcxx/include/__iterator/mergeable.h +++ b/libcxx/include/__iterator/mergeable.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/move_iterator.h b/libcxx/include/__iterator/move_iterator.h index e8ba0a7b0c76..e157b71a2f28 100644 --- a/libcxx/include/__iterator/move_iterator.h +++ b/libcxx/include/__iterator/move_iterator.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/next.h b/libcxx/include/__iterator/next.h index c3b75ef5df3f..fae5989c2aaf 100644 --- a/libcxx/include/__iterator/next.h +++ b/libcxx/include/__iterator/next.h @@ -20,7 +20,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/ostream_iterator.h b/libcxx/include/__iterator/ostream_iterator.h index fde1a7ff2a73..f6601b23d6ef 100644 --- a/libcxx/include/__iterator/ostream_iterator.h +++ b/libcxx/include/__iterator/ostream_iterator.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/ostreambuf_iterator.h b/libcxx/include/__iterator/ostreambuf_iterator.h index b21c78b04dc3..16ddb6525ae8 100644 --- a/libcxx/include/__iterator/ostreambuf_iterator.h +++ b/libcxx/include/__iterator/ostreambuf_iterator.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/permutable.h b/libcxx/include/__iterator/permutable.h index d823df68cf16..85834a23c8fc 100644 --- a/libcxx/include/__iterator/permutable.h +++ b/libcxx/include/__iterator/permutable.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/prev.h b/libcxx/include/__iterator/prev.h index ebe0abc08f33..5839621eefe1 100644 --- a/libcxx/include/__iterator/prev.h +++ b/libcxx/include/__iterator/prev.h @@ -20,7 +20,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/projected.h b/libcxx/include/__iterator/projected.h index 4d025d794888..2edbe0da61fc 100644 --- a/libcxx/include/__iterator/projected.h +++ b/libcxx/include/__iterator/projected.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/readable_traits.h b/libcxx/include/__iterator/readable_traits.h index 07cf17cfeaa1..5bc59a89f345 100644 --- a/libcxx/include/__iterator/readable_traits.h +++ b/libcxx/include/__iterator/readable_traits.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/reverse_access.h b/libcxx/include/__iterator/reverse_access.h index 98a3f05b5f29..40c266378d36 100644 --- a/libcxx/include/__iterator/reverse_access.h +++ b/libcxx/include/__iterator/reverse_access.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/reverse_iterator.h b/libcxx/include/__iterator/reverse_iterator.h index 3af69393efac..90bc2d752e0e 100644 --- a/libcxx/include/__iterator/reverse_iterator.h +++ b/libcxx/include/__iterator/reverse_iterator.h @@ -20,7 +20,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/size.h b/libcxx/include/__iterator/size.h index 90f57dc25fd4..bf40207a8628 100644 --- a/libcxx/include/__iterator/size.h +++ b/libcxx/include/__iterator/size.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/sortable.h b/libcxx/include/__iterator/sortable.h index 3d108911f416..057e1549dfa1 100644 --- a/libcxx/include/__iterator/sortable.h +++ b/libcxx/include/__iterator/sortable.h @@ -19,7 +19,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/unreachable_sentinel.h b/libcxx/include/__iterator/unreachable_sentinel.h index 5aa5b55a30d1..b94ca53f4000 100644 --- a/libcxx/include/__iterator/unreachable_sentinel.h +++ b/libcxx/include/__iterator/unreachable_sentinel.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__iterator/wrap_iter.h b/libcxx/include/__iterator/wrap_iter.h index e964cc5b6f6d..d91a25ee6c8e 100644 --- a/libcxx/include/__iterator/wrap_iter.h +++ b/libcxx/include/__iterator/wrap_iter.h @@ -19,7 +19,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__locale b/libcxx/include/__locale index cabc578268de..ad97be0f66c8 100644 --- a/libcxx/include/__locale +++ b/libcxx/include/__locale @@ -48,7 +48,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__memory/addressof.h b/libcxx/include/__memory/addressof.h index 8377a8fb65f3..75e3dd0647b2 100644 --- a/libcxx/include/__memory/addressof.h +++ b/libcxx/include/__memory/addressof.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__memory/allocation_guard.h b/libcxx/include/__memory/allocation_guard.h index 4e7846d49e6c..424598cc8158 100644 --- a/libcxx/include/__memory/allocation_guard.h +++ b/libcxx/include/__memory/allocation_guard.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__memory/allocator.h b/libcxx/include/__memory/allocator.h index 9dbf616f126d..915ff7c3a516 100644 --- a/libcxx/include/__memory/allocator.h +++ b/libcxx/include/__memory/allocator.h @@ -20,7 +20,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__memory/allocator_arg_t.h b/libcxx/include/__memory/allocator_arg_t.h index bacea754365d..2d63b1f905e5 100644 --- a/libcxx/include/__memory/allocator_arg_t.h +++ b/libcxx/include/__memory/allocator_arg_t.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__memory/allocator_traits.h b/libcxx/include/__memory/allocator_traits.h index bc5ce7750965..5215556cdf3c 100644 --- a/libcxx/include/__memory/allocator_traits.h +++ b/libcxx/include/__memory/allocator_traits.h @@ -19,7 +19,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__memory/auto_ptr.h b/libcxx/include/__memory/auto_ptr.h index 1e97f67ad9e9..163a46b631f0 100644 --- a/libcxx/include/__memory/auto_ptr.h +++ b/libcxx/include/__memory/auto_ptr.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__memory/compressed_pair.h b/libcxx/include/__memory/compressed_pair.h index a2349bf65a82..852031f17d2f 100644 --- a/libcxx/include/__memory/compressed_pair.h +++ b/libcxx/include/__memory/compressed_pair.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__memory/concepts.h b/libcxx/include/__memory/concepts.h index fe9ca2e5f47f..816c553e8554 100644 --- a/libcxx/include/__memory/concepts.h +++ b/libcxx/include/__memory/concepts.h @@ -21,7 +21,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__memory/construct_at.h b/libcxx/include/__memory/construct_at.h index 229cd50a7e40..8a7bf40d7f71 100644 --- a/libcxx/include/__memory/construct_at.h +++ b/libcxx/include/__memory/construct_at.h @@ -21,7 +21,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__memory/pointer_traits.h b/libcxx/include/__memory/pointer_traits.h index 351f34d74e6c..f1e807068439 100644 --- a/libcxx/include/__memory/pointer_traits.h +++ b/libcxx/include/__memory/pointer_traits.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__memory/ranges_construct_at.h b/libcxx/include/__memory/ranges_construct_at.h index 90d3cadab8a3..3064f811e94e 100644 --- a/libcxx/include/__memory/ranges_construct_at.h +++ b/libcxx/include/__memory/ranges_construct_at.h @@ -25,7 +25,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__memory/ranges_uninitialized_algorithms.h b/libcxx/include/__memory/ranges_uninitialized_algorithms.h index c025e4fe5f02..e036c1858b52 100644 --- a/libcxx/include/__memory/ranges_uninitialized_algorithms.h +++ b/libcxx/include/__memory/ranges_uninitialized_algorithms.h @@ -28,7 +28,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__memory/raw_storage_iterator.h b/libcxx/include/__memory/raw_storage_iterator.h index fc155442ccaa..f25f7b1a728a 100644 --- a/libcxx/include/__memory/raw_storage_iterator.h +++ b/libcxx/include/__memory/raw_storage_iterator.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__memory/shared_ptr.h b/libcxx/include/__memory/shared_ptr.h index 451d74e09ae6..0f28bcdfac11 100644 --- a/libcxx/include/__memory/shared_ptr.h +++ b/libcxx/include/__memory/shared_ptr.h @@ -40,7 +40,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__memory/temporary_buffer.h b/libcxx/include/__memory/temporary_buffer.h index 56ac3b27b21a..2c6e333eba08 100644 --- a/libcxx/include/__memory/temporary_buffer.h +++ b/libcxx/include/__memory/temporary_buffer.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__memory/uninitialized_algorithms.h b/libcxx/include/__memory/uninitialized_algorithms.h index 611590582d18..fc55b49aef2e 100644 --- a/libcxx/include/__memory/uninitialized_algorithms.h +++ b/libcxx/include/__memory/uninitialized_algorithms.h @@ -20,7 +20,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__memory/unique_ptr.h b/libcxx/include/__memory/unique_ptr.h index 37f969f9fd6e..348c90325e6f 100644 --- a/libcxx/include/__memory/unique_ptr.h +++ b/libcxx/include/__memory/unique_ptr.h @@ -26,7 +26,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__memory/uses_allocator.h b/libcxx/include/__memory/uses_allocator.h index 705dbf1a929d..05c500cd97b1 100644 --- a/libcxx/include/__memory/uses_allocator.h +++ b/libcxx/include/__memory/uses_allocator.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__memory/voidify.h b/libcxx/include/__memory/voidify.h index 20249ed7d091..3a65c0e83fb7 100644 --- a/libcxx/include/__memory/voidify.h +++ b/libcxx/include/__memory/voidify.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__mutex_base b/libcxx/include/__mutex_base index ce1101c0ea73..da056b6d1423 100644 --- a/libcxx/include/__mutex_base +++ b/libcxx/include/__mutex_base @@ -22,8 +22,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__node_handle b/libcxx/include/__node_handle index 84da7eb31184..71309be62f3c 100644 --- a/libcxx/include/__node_handle +++ b/libcxx/include/__node_handle @@ -65,10 +65,6 @@ public: #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() -# pragma clang include_instead() -# pragma clang include_instead() -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__numeric/accumulate.h b/libcxx/include/__numeric/accumulate.h index bcb95c74266a..fa759872ce77 100644 --- a/libcxx/include/__numeric/accumulate.h +++ b/libcxx/include/__numeric/accumulate.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__numeric/adjacent_difference.h b/libcxx/include/__numeric/adjacent_difference.h index 0a47f3f34e3f..5c712ecdf77d 100644 --- a/libcxx/include/__numeric/adjacent_difference.h +++ b/libcxx/include/__numeric/adjacent_difference.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__numeric/exclusive_scan.h b/libcxx/include/__numeric/exclusive_scan.h index 86d9c229cfc7..c0c89b38805d 100644 --- a/libcxx/include/__numeric/exclusive_scan.h +++ b/libcxx/include/__numeric/exclusive_scan.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__numeric/gcd_lcm.h b/libcxx/include/__numeric/gcd_lcm.h index b5d5499c3c53..9a53a001f211 100644 --- a/libcxx/include/__numeric/gcd_lcm.h +++ b/libcxx/include/__numeric/gcd_lcm.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__numeric/inclusive_scan.h b/libcxx/include/__numeric/inclusive_scan.h index bc523e51f390..a6b005075835 100644 --- a/libcxx/include/__numeric/inclusive_scan.h +++ b/libcxx/include/__numeric/inclusive_scan.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__numeric/inner_product.h b/libcxx/include/__numeric/inner_product.h index aace2e8f2cbb..6fe18bb2b19e 100644 --- a/libcxx/include/__numeric/inner_product.h +++ b/libcxx/include/__numeric/inner_product.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__numeric/iota.h b/libcxx/include/__numeric/iota.h index 91eb23e72475..b30e0e0a5484 100644 --- a/libcxx/include/__numeric/iota.h +++ b/libcxx/include/__numeric/iota.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__numeric/midpoint.h b/libcxx/include/__numeric/midpoint.h index d0db307817b9..668030c46bcb 100644 --- a/libcxx/include/__numeric/midpoint.h +++ b/libcxx/include/__numeric/midpoint.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__numeric/partial_sum.h b/libcxx/include/__numeric/partial_sum.h index db882ea883c4..9acee3afc2b0 100644 --- a/libcxx/include/__numeric/partial_sum.h +++ b/libcxx/include/__numeric/partial_sum.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__numeric/reduce.h b/libcxx/include/__numeric/reduce.h index 830cff07ceca..90e4d238d868 100644 --- a/libcxx/include/__numeric/reduce.h +++ b/libcxx/include/__numeric/reduce.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__numeric/transform_exclusive_scan.h b/libcxx/include/__numeric/transform_exclusive_scan.h index 3ccd8da7eb34..45b3077f6649 100644 --- a/libcxx/include/__numeric/transform_exclusive_scan.h +++ b/libcxx/include/__numeric/transform_exclusive_scan.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__numeric/transform_inclusive_scan.h b/libcxx/include/__numeric/transform_inclusive_scan.h index ff8c92f3a36d..b0d4ab5a88fd 100644 --- a/libcxx/include/__numeric/transform_inclusive_scan.h +++ b/libcxx/include/__numeric/transform_inclusive_scan.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__numeric/transform_reduce.h b/libcxx/include/__numeric/transform_reduce.h index 6ec6149f62b1..da5a77988c38 100644 --- a/libcxx/include/__numeric/transform_reduce.h +++ b/libcxx/include/__numeric/transform_reduce.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__random/bernoulli_distribution.h b/libcxx/include/__random/bernoulli_distribution.h index 6e7488700f3a..cf019519ab7f 100644 --- a/libcxx/include/__random/bernoulli_distribution.h +++ b/libcxx/include/__random/bernoulli_distribution.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/binomial_distribution.h b/libcxx/include/__random/binomial_distribution.h index 6447d3d22eb2..774f9d0bba30 100644 --- a/libcxx/include/__random/binomial_distribution.h +++ b/libcxx/include/__random/binomial_distribution.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/cauchy_distribution.h b/libcxx/include/__random/cauchy_distribution.h index dead3a25b6ed..288118e1d22d 100644 --- a/libcxx/include/__random/cauchy_distribution.h +++ b/libcxx/include/__random/cauchy_distribution.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/chi_squared_distribution.h b/libcxx/include/__random/chi_squared_distribution.h index 2dce18be1987..b98488c20d28 100644 --- a/libcxx/include/__random/chi_squared_distribution.h +++ b/libcxx/include/__random/chi_squared_distribution.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/clamp_to_integral.h b/libcxx/include/__random/clamp_to_integral.h index 2eef04f7b436..7d44ff9cfcad 100644 --- a/libcxx/include/__random/clamp_to_integral.h +++ b/libcxx/include/__random/clamp_to_integral.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/default_random_engine.h b/libcxx/include/__random/default_random_engine.h index 02d607948e15..89792f4f0d43 100644 --- a/libcxx/include/__random/default_random_engine.h +++ b/libcxx/include/__random/default_random_engine.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__random/discard_block_engine.h b/libcxx/include/__random/discard_block_engine.h index 83ae20f7a375..c58d66b58869 100644 --- a/libcxx/include/__random/discard_block_engine.h +++ b/libcxx/include/__random/discard_block_engine.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/discrete_distribution.h b/libcxx/include/__random/discrete_distribution.h index 7e5a6b77ae9b..bd47b8b46539 100644 --- a/libcxx/include/__random/discrete_distribution.h +++ b/libcxx/include/__random/discrete_distribution.h @@ -20,7 +20,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/exponential_distribution.h b/libcxx/include/__random/exponential_distribution.h index f3ff78f54d37..e51871dd53bc 100644 --- a/libcxx/include/__random/exponential_distribution.h +++ b/libcxx/include/__random/exponential_distribution.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/extreme_value_distribution.h b/libcxx/include/__random/extreme_value_distribution.h index c93f0cfd7a9e..15cebd8e9564 100644 --- a/libcxx/include/__random/extreme_value_distribution.h +++ b/libcxx/include/__random/extreme_value_distribution.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/fisher_f_distribution.h b/libcxx/include/__random/fisher_f_distribution.h index cf8705809199..72f1f40aaa49 100644 --- a/libcxx/include/__random/fisher_f_distribution.h +++ b/libcxx/include/__random/fisher_f_distribution.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/gamma_distribution.h b/libcxx/include/__random/gamma_distribution.h index 784fc2c5c94d..a8504961b288 100644 --- a/libcxx/include/__random/gamma_distribution.h +++ b/libcxx/include/__random/gamma_distribution.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/generate_canonical.h b/libcxx/include/__random/generate_canonical.h index 8b0e7a86972f..84efa7803c94 100644 --- a/libcxx/include/__random/generate_canonical.h +++ b/libcxx/include/__random/generate_canonical.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/geometric_distribution.h b/libcxx/include/__random/geometric_distribution.h index e565eb783a7f..8e1be522e0e3 100644 --- a/libcxx/include/__random/geometric_distribution.h +++ b/libcxx/include/__random/geometric_distribution.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/independent_bits_engine.h b/libcxx/include/__random/independent_bits_engine.h index 6e48d33f4c09..e80d6eec49cb 100644 --- a/libcxx/include/__random/independent_bits_engine.h +++ b/libcxx/include/__random/independent_bits_engine.h @@ -19,7 +19,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/is_seed_sequence.h b/libcxx/include/__random/is_seed_sequence.h index 244f564576dd..a6832f51c1ee 100644 --- a/libcxx/include/__random/is_seed_sequence.h +++ b/libcxx/include/__random/is_seed_sequence.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__random/knuth_b.h b/libcxx/include/__random/knuth_b.h index 70330fc7d843..f5b31cb64fa4 100644 --- a/libcxx/include/__random/knuth_b.h +++ b/libcxx/include/__random/knuth_b.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__random/linear_congruential_engine.h b/libcxx/include/__random/linear_congruential_engine.h index 18ce4cb2bbf6..f5aba75d572a 100644 --- a/libcxx/include/__random/linear_congruential_engine.h +++ b/libcxx/include/__random/linear_congruential_engine.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/log2.h b/libcxx/include/__random/log2.h index 5fe4bbed34c8..b077d211cefa 100644 --- a/libcxx/include/__random/log2.h +++ b/libcxx/include/__random/log2.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__random/lognormal_distribution.h b/libcxx/include/__random/lognormal_distribution.h index bfecca0e323c..048d7dade9eb 100644 --- a/libcxx/include/__random/lognormal_distribution.h +++ b/libcxx/include/__random/lognormal_distribution.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/mersenne_twister_engine.h b/libcxx/include/__random/mersenne_twister_engine.h index 250aa501633e..8bceac05dce9 100644 --- a/libcxx/include/__random/mersenne_twister_engine.h +++ b/libcxx/include/__random/mersenne_twister_engine.h @@ -21,7 +21,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/negative_binomial_distribution.h b/libcxx/include/__random/negative_binomial_distribution.h index 3aff91089666..a4b96fb5f33f 100644 --- a/libcxx/include/__random/negative_binomial_distribution.h +++ b/libcxx/include/__random/negative_binomial_distribution.h @@ -19,7 +19,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/normal_distribution.h b/libcxx/include/__random/normal_distribution.h index 6458d048dd9d..dc4de78e9273 100644 --- a/libcxx/include/__random/normal_distribution.h +++ b/libcxx/include/__random/normal_distribution.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/piecewise_constant_distribution.h b/libcxx/include/__random/piecewise_constant_distribution.h index 90b30ef800cc..eec9b7540a96 100644 --- a/libcxx/include/__random/piecewise_constant_distribution.h +++ b/libcxx/include/__random/piecewise_constant_distribution.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/piecewise_linear_distribution.h b/libcxx/include/__random/piecewise_linear_distribution.h index 5841d4ea20f5..0d7591af1056 100644 --- a/libcxx/include/__random/piecewise_linear_distribution.h +++ b/libcxx/include/__random/piecewise_linear_distribution.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/poisson_distribution.h b/libcxx/include/__random/poisson_distribution.h index e2df27f4d70c..32f5223d0650 100644 --- a/libcxx/include/__random/poisson_distribution.h +++ b/libcxx/include/__random/poisson_distribution.h @@ -21,7 +21,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/random_device.h b/libcxx/include/__random/random_device.h index 811a5ba177b4..e82b437a3b54 100644 --- a/libcxx/include/__random/random_device.h +++ b/libcxx/include/__random/random_device.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/ranlux.h b/libcxx/include/__random/ranlux.h index ba06750d9f79..e44cece39dfc 100644 --- a/libcxx/include/__random/ranlux.h +++ b/libcxx/include/__random/ranlux.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__random/seed_seq.h b/libcxx/include/__random/seed_seq.h index 5746a8c8ced6..8640cd1b4e43 100644 --- a/libcxx/include/__random/seed_seq.h +++ b/libcxx/include/__random/seed_seq.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/shuffle_order_engine.h b/libcxx/include/__random/shuffle_order_engine.h index 4a4715ca769b..c2f76f609ae5 100644 --- a/libcxx/include/__random/shuffle_order_engine.h +++ b/libcxx/include/__random/shuffle_order_engine.h @@ -19,7 +19,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/student_t_distribution.h b/libcxx/include/__random/student_t_distribution.h index 5a9caea83849..dc38a8b3d2f8 100644 --- a/libcxx/include/__random/student_t_distribution.h +++ b/libcxx/include/__random/student_t_distribution.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/subtract_with_carry_engine.h b/libcxx/include/__random/subtract_with_carry_engine.h index 0d21470fed0d..fdbe2d2e9be3 100644 --- a/libcxx/include/__random/subtract_with_carry_engine.h +++ b/libcxx/include/__random/subtract_with_carry_engine.h @@ -22,7 +22,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/uniform_int_distribution.h b/libcxx/include/__random/uniform_int_distribution.h index 844ad5f70cb2..70cf698b187a 100644 --- a/libcxx/include/__random/uniform_int_distribution.h +++ b/libcxx/include/__random/uniform_int_distribution.h @@ -22,7 +22,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/uniform_random_bit_generator.h b/libcxx/include/__random/uniform_random_bit_generator.h index 97a75c88f872..99f2e6bc30db 100644 --- a/libcxx/include/__random/uniform_random_bit_generator.h +++ b/libcxx/include/__random/uniform_random_bit_generator.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/uniform_real_distribution.h b/libcxx/include/__random/uniform_real_distribution.h index 2ee579012488..e11222540b47 100644 --- a/libcxx/include/__random/uniform_real_distribution.h +++ b/libcxx/include/__random/uniform_real_distribution.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__random/weibull_distribution.h b/libcxx/include/__random/weibull_distribution.h index fe8ea37f1e1e..85bae65096cb 100644 --- a/libcxx/include/__random/weibull_distribution.h +++ b/libcxx/include/__random/weibull_distribution.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__ranges/access.h b/libcxx/include/__ranges/access.h index 9a35d4e76934..2ebdab4eb8cd 100644 --- a/libcxx/include/__ranges/access.h +++ b/libcxx/include/__ranges/access.h @@ -19,7 +19,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/all.h b/libcxx/include/__ranges/all.h index b606bd14c348..77396222d63a 100644 --- a/libcxx/include/__ranges/all.h +++ b/libcxx/include/__ranges/all.h @@ -24,7 +24,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/common_view.h b/libcxx/include/__ranges/common_view.h index a63062a0f80f..78911284bbc4 100644 --- a/libcxx/include/__ranges/common_view.h +++ b/libcxx/include/__ranges/common_view.h @@ -26,7 +26,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/concepts.h b/libcxx/include/__ranges/concepts.h index 4425273a5c86..709f3d80f7ea 100644 --- a/libcxx/include/__ranges/concepts.h +++ b/libcxx/include/__ranges/concepts.h @@ -28,7 +28,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/copyable_box.h b/libcxx/include/__ranges/copyable_box.h index 615bd49b85bd..e1c08a7ea1c3 100644 --- a/libcxx/include/__ranges/copyable_box.h +++ b/libcxx/include/__ranges/copyable_box.h @@ -20,7 +20,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/counted.h b/libcxx/include/__ranges/counted.h index 0a985107fea5..0a2d8285788a 100644 --- a/libcxx/include/__ranges/counted.h +++ b/libcxx/include/__ranges/counted.h @@ -25,7 +25,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/dangling.h b/libcxx/include/__ranges/dangling.h index 2b736e21e4d9..3a200ed96543 100644 --- a/libcxx/include/__ranges/dangling.h +++ b/libcxx/include/__ranges/dangling.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/data.h b/libcxx/include/__ranges/data.h index c297af25a187..dbb4767e53b5 100644 --- a/libcxx/include/__ranges/data.h +++ b/libcxx/include/__ranges/data.h @@ -20,7 +20,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/drop_view.h b/libcxx/include/__ranges/drop_view.h index c3f79535e32a..079a74d4b84c 100644 --- a/libcxx/include/__ranges/drop_view.h +++ b/libcxx/include/__ranges/drop_view.h @@ -27,7 +27,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/empty.h b/libcxx/include/__ranges/empty.h index 75c2241cb225..c0b55b221a04 100644 --- a/libcxx/include/__ranges/empty.h +++ b/libcxx/include/__ranges/empty.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/empty_view.h b/libcxx/include/__ranges/empty_view.h index 9675cba186fc..6a087276783c 100644 --- a/libcxx/include/__ranges/empty_view.h +++ b/libcxx/include/__ranges/empty_view.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/enable_borrowed_range.h b/libcxx/include/__ranges/enable_borrowed_range.h index bca488ef1a4a..b8f809b6ceb1 100644 --- a/libcxx/include/__ranges/enable_borrowed_range.h +++ b/libcxx/include/__ranges/enable_borrowed_range.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/enable_view.h b/libcxx/include/__ranges/enable_view.h index 8f6d94419cb1..4b4b63a42c03 100644 --- a/libcxx/include/__ranges/enable_view.h +++ b/libcxx/include/__ranges/enable_view.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/iota_view.h b/libcxx/include/__ranges/iota_view.h index 119edd623d5f..b7c099e04900 100644 --- a/libcxx/include/__ranges/iota_view.h +++ b/libcxx/include/__ranges/iota_view.h @@ -35,7 +35,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/join_view.h b/libcxx/include/__ranges/join_view.h index 57162540054b..395e5c7ece5a 100644 --- a/libcxx/include/__ranges/join_view.h +++ b/libcxx/include/__ranges/join_view.h @@ -26,7 +26,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/non_propagating_cache.h b/libcxx/include/__ranges/non_propagating_cache.h index 41bc714e28c6..d9589ae46c33 100644 --- a/libcxx/include/__ranges/non_propagating_cache.h +++ b/libcxx/include/__ranges/non_propagating_cache.h @@ -20,7 +20,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/owning_view.h b/libcxx/include/__ranges/owning_view.h index 6fddd3c6e6b2..7987c607510b 100644 --- a/libcxx/include/__ranges/owning_view.h +++ b/libcxx/include/__ranges/owning_view.h @@ -24,7 +24,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/range_adaptor.h b/libcxx/include/__ranges/range_adaptor.h index cf7ec837d632..9c53488ba6ce 100644 --- a/libcxx/include/__ranges/range_adaptor.h +++ b/libcxx/include/__ranges/range_adaptor.h @@ -21,7 +21,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/rbegin.h b/libcxx/include/__ranges/rbegin.h index 3d4e4228030e..20f5489c50bb 100644 --- a/libcxx/include/__ranges/rbegin.h +++ b/libcxx/include/__ranges/rbegin.h @@ -21,7 +21,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/ref_view.h b/libcxx/include/__ranges/ref_view.h index be46ed81e249..255a468606f2 100644 --- a/libcxx/include/__ranges/ref_view.h +++ b/libcxx/include/__ranges/ref_view.h @@ -27,7 +27,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/rend.h b/libcxx/include/__ranges/rend.h index 9795f6600007..4f1597e0738c 100644 --- a/libcxx/include/__ranges/rend.h +++ b/libcxx/include/__ranges/rend.h @@ -22,7 +22,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/reverse_view.h b/libcxx/include/__ranges/reverse_view.h index 9c736ea9bc7d..b5de7e9e3220 100644 --- a/libcxx/include/__ranges/reverse_view.h +++ b/libcxx/include/__ranges/reverse_view.h @@ -29,7 +29,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/single_view.h b/libcxx/include/__ranges/single_view.h index 42e6fbe946f4..e0fd4849f44b 100644 --- a/libcxx/include/__ranges/single_view.h +++ b/libcxx/include/__ranges/single_view.h @@ -20,7 +20,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/size.h b/libcxx/include/__ranges/size.h index 7f832b6ecb0b..2c5a96e63b7c 100644 --- a/libcxx/include/__ranges/size.h +++ b/libcxx/include/__ranges/size.h @@ -20,7 +20,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/subrange.h b/libcxx/include/__ranges/subrange.h index 42e0697d31cc..c54f7710fce6 100644 --- a/libcxx/include/__ranges/subrange.h +++ b/libcxx/include/__ranges/subrange.h @@ -32,7 +32,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/take_view.h b/libcxx/include/__ranges/take_view.h index 59eded0b7d72..b5f194f9a0e6 100644 --- a/libcxx/include/__ranges/take_view.h +++ b/libcxx/include/__ranges/take_view.h @@ -27,7 +27,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__ranges/transform_view.h b/libcxx/include/__ranges/transform_view.h index a1dd1bdc1024..4cc582faebfa 100644 --- a/libcxx/include/__ranges/transform_view.h +++ b/libcxx/include/__ranges/transform_view.h @@ -37,7 +37,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/view_interface.h b/libcxx/include/__ranges/view_interface.h index 6bc615a1fe85..eecc47511139 100644 --- a/libcxx/include/__ranges/view_interface.h +++ b/libcxx/include/__ranges/view_interface.h @@ -24,7 +24,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__ranges/views.h b/libcxx/include/__ranges/views.h index e89cd13a09dc..8cc5ba3d2aca 100644 --- a/libcxx/include/__ranges/views.h +++ b/libcxx/include/__ranges/views.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__split_buffer b/libcxx/include/__split_buffer index 3b9c674fe7f9..9565e16960f3 100644 --- a/libcxx/include/__split_buffer +++ b/libcxx/include/__split_buffer @@ -17,8 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__std_stream b/libcxx/include/__std_stream index 07dd7e7643e2..e419e8c03af0 100644 --- a/libcxx/include/__std_stream +++ b/libcxx/include/__std_stream @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__string b/libcxx/include/__string index ca068f357cd1..479893bbde90 100644 --- a/libcxx/include/__string +++ b/libcxx/include/__string @@ -34,7 +34,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__thread/poll_with_backoff.h b/libcxx/include/__thread/poll_with_backoff.h index 8532607719c1..0bbafd186657 100644 --- a/libcxx/include/__thread/poll_with_backoff.h +++ b/libcxx/include/__thread/poll_with_backoff.h @@ -19,7 +19,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__thread/timed_backoff_policy.h b/libcxx/include/__thread/timed_backoff_policy.h index fd0effb8632d..28fe75d6fd80 100644 --- a/libcxx/include/__thread/timed_backoff_policy.h +++ b/libcxx/include/__thread/timed_backoff_policy.h @@ -18,7 +18,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__threading_support b/libcxx/include/__threading_support index b8482824796f..4f1640ab36d0 100644 --- a/libcxx/include/__threading_support +++ b/libcxx/include/__threading_support @@ -25,10 +25,6 @@ #ifndef _LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER # pragma GCC system_header -# pragma clang include_instead() -# pragma clang include_instead() -# pragma clang include_instead() -# pragma clang include_instead() #endif #if defined(_LIBCPP_HAS_THREAD_API_EXTERNAL) diff --git a/libcxx/include/__tree b/libcxx/include/__tree index d22d26c0b193..384d3835049b 100644 --- a/libcxx/include/__tree +++ b/libcxx/include/__tree @@ -20,8 +20,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__tuple b/libcxx/include/__tuple index 361ded184792..6d13bb24c579 100644 --- a/libcxx/include/__tuple +++ b/libcxx/include/__tuple @@ -16,8 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() -# pragma clang include_instead() #endif diff --git a/libcxx/include/__utility/as_const.h b/libcxx/include/__utility/as_const.h index 47b7f8d3d169..be7dd8c7cf23 100644 --- a/libcxx/include/__utility/as_const.h +++ b/libcxx/include/__utility/as_const.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__utility/auto_cast.h b/libcxx/include/__utility/auto_cast.h index 65fa8cf47902..e9079443959f 100644 --- a/libcxx/include/__utility/auto_cast.h +++ b/libcxx/include/__utility/auto_cast.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif #define _LIBCPP_AUTO_CAST(expr) static_cast::type>(expr) diff --git a/libcxx/include/__utility/cmp.h b/libcxx/include/__utility/cmp.h index 3d3a240d640d..f36d53ad4654 100644 --- a/libcxx/include/__utility/cmp.h +++ b/libcxx/include/__utility/cmp.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_PUSH_MACROS diff --git a/libcxx/include/__utility/declval.h b/libcxx/include/__utility/declval.h index f8717dac9ec9..97fd1eba91c6 100644 --- a/libcxx/include/__utility/declval.h +++ b/libcxx/include/__utility/declval.h @@ -13,7 +13,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__utility/exchange.h b/libcxx/include/__utility/exchange.h index 603b3069d9b5..d9b3c151755f 100644 --- a/libcxx/include/__utility/exchange.h +++ b/libcxx/include/__utility/exchange.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__utility/forward.h b/libcxx/include/__utility/forward.h index 467bfd6e3979..6ee1f818baca 100644 --- a/libcxx/include/__utility/forward.h +++ b/libcxx/include/__utility/forward.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__utility/in_place.h b/libcxx/include/__utility/in_place.h index bc3d68f21f06..7a4973fa0407 100644 --- a/libcxx/include/__utility/in_place.h +++ b/libcxx/include/__utility/in_place.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__utility/integer_sequence.h b/libcxx/include/__utility/integer_sequence.h index a4046e5634b9..633f1333e247 100644 --- a/libcxx/include/__utility/integer_sequence.h +++ b/libcxx/include/__utility/integer_sequence.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__utility/move.h b/libcxx/include/__utility/move.h index a6f36269f641..7d1c8c2522ad 100644 --- a/libcxx/include/__utility/move.h +++ b/libcxx/include/__utility/move.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__utility/pair.h b/libcxx/include/__utility/pair.h index 9564ede086d5..15532f613264 100644 --- a/libcxx/include/__utility/pair.h +++ b/libcxx/include/__utility/pair.h @@ -22,7 +22,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__utility/piecewise_construct.h b/libcxx/include/__utility/piecewise_construct.h index e1d157693953..3cc86fef2a0f 100644 --- a/libcxx/include/__utility/piecewise_construct.h +++ b/libcxx/include/__utility/piecewise_construct.h @@ -13,7 +13,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__utility/priority_tag.h b/libcxx/include/__utility/priority_tag.h index 339e29bc7e9a..e51ba6bfcc05 100644 --- a/libcxx/include/__utility/priority_tag.h +++ b/libcxx/include/__utility/priority_tag.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__utility/rel_ops.h b/libcxx/include/__utility/rel_ops.h index 208419017b66..2577e94e91f6 100644 --- a/libcxx/include/__utility/rel_ops.h +++ b/libcxx/include/__utility/rel_ops.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__utility/swap.h b/libcxx/include/__utility/swap.h index f16d6cd1a78e..f9e7f36678ba 100644 --- a/libcxx/include/__utility/swap.h +++ b/libcxx/include/__utility/swap.h @@ -17,7 +17,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__utility/to_underlying.h b/libcxx/include/__utility/to_underlying.h index 24edd966d8ac..3428406e8d3a 100644 --- a/libcxx/include/__utility/to_underlying.h +++ b/libcxx/include/__utility/to_underlying.h @@ -15,7 +15,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__utility/transaction.h b/libcxx/include/__utility/transaction.h index 0d3e93b093ca..87e51c0b198e 100644 --- a/libcxx/include/__utility/transaction.h +++ b/libcxx/include/__utility/transaction.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__utility/unreachable.h b/libcxx/include/__utility/unreachable.h index 071aef98ddf3..485edb227c92 100644 --- a/libcxx/include/__utility/unreachable.h +++ b/libcxx/include/__utility/unreachable.h @@ -14,7 +14,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/include/__variant/monostate.h b/libcxx/include/__variant/monostate.h index f4e19d2929ac..b389c3b56b36 100644 --- a/libcxx/include/__variant/monostate.h +++ b/libcxx/include/__variant/monostate.h @@ -16,7 +16,6 @@ #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) # pragma GCC system_header -# pragma clang include_instead() #endif _LIBCPP_BEGIN_NAMESPACE_STD diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/adjacent_find.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/adjacent_find.header.verify.cpp deleted file mode 100644 index 53bcc2cc6a62..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/adjacent_find.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/adjacent_find.h> -// expected-error@-1 {{header '<__algorithm/adjacent_find.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/all_of.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/all_of.header.verify.cpp deleted file mode 100644 index 6ecaa5f1cea8..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/all_of.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/all_of.h> -// expected-error@-1 {{header '<__algorithm/all_of.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/any_of.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/any_of.header.verify.cpp deleted file mode 100644 index 9bf78ce8e80b..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/any_of.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/any_of.h> -// expected-error@-1 {{header '<__algorithm/any_of.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/binary_search.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/binary_search.header.verify.cpp deleted file mode 100644 index c939e633993f..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/binary_search.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/binary_search.h> -// expected-error@-1 {{header '<__algorithm/binary_search.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/clamp.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/clamp.header.verify.cpp deleted file mode 100644 index d8df75776ea1..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/clamp.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/clamp.h> -// expected-error@-1 {{header '<__algorithm/clamp.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/comp.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/comp.header.verify.cpp deleted file mode 100644 index 19d646863295..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/comp.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/comp.h> -// expected-error@-1 {{header '<__algorithm/comp.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/comp_ref_type.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/comp_ref_type.header.verify.cpp deleted file mode 100644 index 95608faaf805..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/comp_ref_type.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/comp_ref_type.h> -// expected-error@-1 {{header '<__algorithm/comp_ref_type.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/copy.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/copy.header.verify.cpp deleted file mode 100644 index dfad0486e01b..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/copy.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/copy.h> -// expected-error@-1 {{header '<__algorithm/copy.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/copy_backward.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/copy_backward.header.verify.cpp deleted file mode 100644 index 7d173e207bff..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/copy_backward.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/copy_backward.h> -// expected-error@-1 {{header '<__algorithm/copy_backward.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/copy_if.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/copy_if.header.verify.cpp deleted file mode 100644 index 350601658f8f..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/copy_if.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/copy_if.h> -// expected-error@-1 {{header '<__algorithm/copy_if.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/copy_n.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/copy_n.header.verify.cpp deleted file mode 100644 index 70896d01117c..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/copy_n.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/copy_n.h> -// expected-error@-1 {{header '<__algorithm/copy_n.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/count.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/count.header.verify.cpp deleted file mode 100644 index c6dd298941b0..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/count.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/count.h> -// expected-error@-1 {{header '<__algorithm/count.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/count_if.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/count_if.header.verify.cpp deleted file mode 100644 index 0bb35906ed9a..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/count_if.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/count_if.h> -// expected-error@-1 {{header '<__algorithm/count_if.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/equal.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/equal.header.verify.cpp deleted file mode 100644 index e1b5fc35852e..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/equal.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/equal.h> -// expected-error@-1 {{header '<__algorithm/equal.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/equal_range.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/equal_range.header.verify.cpp deleted file mode 100644 index 665efcb30736..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/equal_range.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/equal_range.h> -// expected-error@-1 {{header '<__algorithm/equal_range.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/fill.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/fill.header.verify.cpp deleted file mode 100644 index 78a139e6bda2..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/fill.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/fill.h> -// expected-error@-1 {{header '<__algorithm/fill.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/fill_n.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/fill_n.header.verify.cpp deleted file mode 100644 index c838b08daa9d..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/fill_n.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/fill_n.h> -// expected-error@-1 {{header '<__algorithm/fill_n.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/find.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/find.header.verify.cpp deleted file mode 100644 index a05723142025..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/find.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/find.h> -// expected-error@-1 {{header '<__algorithm/find.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/find_end.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/find_end.header.verify.cpp deleted file mode 100644 index a638236a5880..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/find_end.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/find_end.h> -// expected-error@-1 {{header '<__algorithm/find_end.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/find_first_of.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/find_first_of.header.verify.cpp deleted file mode 100644 index 9c7b3284d779..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/find_first_of.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/find_first_of.h> -// expected-error@-1 {{header '<__algorithm/find_first_of.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/find_if.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/find_if.header.verify.cpp deleted file mode 100644 index c3bc689b00e3..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/find_if.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/find_if.h> -// expected-error@-1 {{header '<__algorithm/find_if.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/find_if_not.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/find_if_not.header.verify.cpp deleted file mode 100644 index 0713709cdf37..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/find_if_not.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/find_if_not.h> -// expected-error@-1 {{header '<__algorithm/find_if_not.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/for_each.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/for_each.header.verify.cpp deleted file mode 100644 index 7419537861b3..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/for_each.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/for_each.h> -// expected-error@-1 {{header '<__algorithm/for_each.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/for_each_n.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/for_each_n.header.verify.cpp deleted file mode 100644 index e34d4114c997..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/for_each_n.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/for_each_n.h> -// expected-error@-1 {{header '<__algorithm/for_each_n.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/generate.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/generate.header.verify.cpp deleted file mode 100644 index 3d5d08367aa5..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/generate.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/generate.h> -// expected-error@-1 {{header '<__algorithm/generate.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/generate_n.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/generate_n.header.verify.cpp deleted file mode 100644 index b0ece731a531..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/generate_n.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/generate_n.h> -// expected-error@-1 {{header '<__algorithm/generate_n.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/half_positive.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/half_positive.header.verify.cpp deleted file mode 100644 index d074323afed7..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/half_positive.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/half_positive.h> -// expected-error@-1 {{header '<__algorithm/half_positive.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/in_found_result.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/in_found_result.header.verify.cpp deleted file mode 100644 index 1c6a1923eca0..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/in_found_result.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/in_found_result.h> -// expected-error@-1 {{header '<__algorithm/in_found_result.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/in_fun_result.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/in_fun_result.header.verify.cpp deleted file mode 100644 index 36fd0b00fdc1..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/in_fun_result.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/in_fun_result.h> -// expected-error@-1 {{header '<__algorithm/in_fun_result.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/in_in_out_result.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/in_in_out_result.header.verify.cpp deleted file mode 100644 index 288363e4848c..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/in_in_out_result.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/in_in_out_result.h> -// expected-error@-1 {{header '<__algorithm/in_in_out_result.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/in_in_result.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/in_in_result.header.verify.cpp deleted file mode 100644 index 251e0dab5a99..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/in_in_result.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/in_in_result.h> -// expected-error@-1 {{header '<__algorithm/in_in_result.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/in_out_out_result.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/in_out_out_result.header.verify.cpp deleted file mode 100644 index 8ffe63e0f892..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/in_out_out_result.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/in_out_out_result.h> -// expected-error@-1 {{header '<__algorithm/in_out_out_result.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/in_out_result.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/in_out_result.header.verify.cpp deleted file mode 100644 index b3dbe26ae3ef..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/in_out_result.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/in_out_result.h> -// expected-error@-1 {{header '<__algorithm/in_out_result.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/includes.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/includes.header.verify.cpp deleted file mode 100644 index 8bbb82126482..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/includes.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/includes.h> -// expected-error@-1 {{header '<__algorithm/includes.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/inplace_merge.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/inplace_merge.header.verify.cpp deleted file mode 100644 index 9f1c2dae79c1..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/inplace_merge.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/inplace_merge.h> -// expected-error@-1 {{header '<__algorithm/inplace_merge.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/is_heap.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/is_heap.header.verify.cpp deleted file mode 100644 index 9b4613a32244..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/is_heap.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/is_heap.h> -// expected-error@-1 {{header '<__algorithm/is_heap.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/is_heap_until.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/is_heap_until.header.verify.cpp deleted file mode 100644 index 7aeb1f4b791f..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/is_heap_until.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/is_heap_until.h> -// expected-error@-1 {{header '<__algorithm/is_heap_until.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/is_partitioned.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/is_partitioned.header.verify.cpp deleted file mode 100644 index 5885b33f9448..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/is_partitioned.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/is_partitioned.h> -// expected-error@-1 {{header '<__algorithm/is_partitioned.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/is_permutation.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/is_permutation.header.verify.cpp deleted file mode 100644 index e88477f95b92..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/is_permutation.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/is_permutation.h> -// expected-error@-1 {{header '<__algorithm/is_permutation.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/is_sorted.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/is_sorted.header.verify.cpp deleted file mode 100644 index 8b993debca8c..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/is_sorted.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/is_sorted.h> -// expected-error@-1 {{header '<__algorithm/is_sorted.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/is_sorted_until.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/is_sorted_until.header.verify.cpp deleted file mode 100644 index d7bddcbe4ad8..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/is_sorted_until.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/is_sorted_until.h> -// expected-error@-1 {{header '<__algorithm/is_sorted_until.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/iter_swap.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/iter_swap.header.verify.cpp deleted file mode 100644 index 977c27eddcbc..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/iter_swap.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/iter_swap.h> -// expected-error@-1 {{header '<__algorithm/iter_swap.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/lexicographical_compare.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/lexicographical_compare.header.verify.cpp deleted file mode 100644 index f3dfa04d172d..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/lexicographical_compare.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/lexicographical_compare.h> -// expected-error@-1 {{header '<__algorithm/lexicographical_compare.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/lower_bound.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/lower_bound.header.verify.cpp deleted file mode 100644 index afe3608773d7..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/lower_bound.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/lower_bound.h> -// expected-error@-1 {{header '<__algorithm/lower_bound.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/make_heap.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/make_heap.header.verify.cpp deleted file mode 100644 index 38e79a6483ad..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/make_heap.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/make_heap.h> -// expected-error@-1 {{header '<__algorithm/make_heap.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/max.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/max.header.verify.cpp deleted file mode 100644 index c95593a2a911..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/max.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/max.h> -// expected-error@-1 {{header '<__algorithm/max.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/max_element.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/max_element.header.verify.cpp deleted file mode 100644 index 532cbedc600d..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/max_element.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/max_element.h> -// expected-error@-1 {{header '<__algorithm/max_element.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/merge.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/merge.header.verify.cpp deleted file mode 100644 index b709587ac756..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/merge.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/merge.h> -// expected-error@-1 {{header '<__algorithm/merge.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/min.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/min.header.verify.cpp deleted file mode 100644 index 86a44165b83b..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/min.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/min.h> -// expected-error@-1 {{header '<__algorithm/min.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/min_element.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/min_element.header.verify.cpp deleted file mode 100644 index ab7ac5f9c1b1..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/min_element.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/min_element.h> -// expected-error@-1 {{header '<__algorithm/min_element.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/min_max_result.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/min_max_result.header.verify.cpp deleted file mode 100644 index d435b1e2399f..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/min_max_result.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/min_max_result.h> -// expected-error@-1 {{header '<__algorithm/min_max_result.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/minmax.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/minmax.header.verify.cpp deleted file mode 100644 index 69ee501f5087..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/minmax.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/minmax.h> -// expected-error@-1 {{header '<__algorithm/minmax.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/minmax_element.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/minmax_element.header.verify.cpp deleted file mode 100644 index 6669f8f491c1..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/minmax_element.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/minmax_element.h> -// expected-error@-1 {{header '<__algorithm/minmax_element.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/mismatch.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/mismatch.header.verify.cpp deleted file mode 100644 index b4482518b71d..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/mismatch.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/mismatch.h> -// expected-error@-1 {{header '<__algorithm/mismatch.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/move.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/move.header.verify.cpp deleted file mode 100644 index d44aa58af892..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/move.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/move.h> -// expected-error@-1 {{header '<__algorithm/move.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/move_backward.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/move_backward.header.verify.cpp deleted file mode 100644 index 8bba26749d1d..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/move_backward.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/move_backward.h> -// expected-error@-1 {{header '<__algorithm/move_backward.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/next_permutation.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/next_permutation.header.verify.cpp deleted file mode 100644 index 7d17804bbe74..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/next_permutation.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/next_permutation.h> -// expected-error@-1 {{header '<__algorithm/next_permutation.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/none_of.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/none_of.header.verify.cpp deleted file mode 100644 index 864fcd990dc0..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/none_of.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/none_of.h> -// expected-error@-1 {{header '<__algorithm/none_of.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/nth_element.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/nth_element.header.verify.cpp deleted file mode 100644 index 7da4a3945e54..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/nth_element.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/nth_element.h> -// expected-error@-1 {{header '<__algorithm/nth_element.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/partial_sort.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/partial_sort.header.verify.cpp deleted file mode 100644 index 5ea114c6b000..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/partial_sort.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/partial_sort.h> -// expected-error@-1 {{header '<__algorithm/partial_sort.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/partial_sort_copy.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/partial_sort_copy.header.verify.cpp deleted file mode 100644 index 86cccf8d5af1..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/partial_sort_copy.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/partial_sort_copy.h> -// expected-error@-1 {{header '<__algorithm/partial_sort_copy.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/partition.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/partition.header.verify.cpp deleted file mode 100644 index 059af31e47f4..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/partition.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/partition.h> -// expected-error@-1 {{header '<__algorithm/partition.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/partition_copy.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/partition_copy.header.verify.cpp deleted file mode 100644 index cf1b8defa1e8..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/partition_copy.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/partition_copy.h> -// expected-error@-1 {{header '<__algorithm/partition_copy.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/partition_point.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/partition_point.header.verify.cpp deleted file mode 100644 index 89d8366557fd..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/partition_point.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/partition_point.h> -// expected-error@-1 {{header '<__algorithm/partition_point.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/pop_heap.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/pop_heap.header.verify.cpp deleted file mode 100644 index dd1136ce8b24..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/pop_heap.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/pop_heap.h> -// expected-error@-1 {{header '<__algorithm/pop_heap.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/prev_permutation.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/prev_permutation.header.verify.cpp deleted file mode 100644 index 30ad6c4b3728..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/prev_permutation.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/prev_permutation.h> -// expected-error@-1 {{header '<__algorithm/prev_permutation.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/push_heap.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/push_heap.header.verify.cpp deleted file mode 100644 index 6c3dbca15703..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/push_heap.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/push_heap.h> -// expected-error@-1 {{header '<__algorithm/push_heap.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/ranges_min_element.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/ranges_min_element.header.verify.cpp deleted file mode 100644 index bd001e34fd90..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/ranges_min_element.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/ranges_min_element.h> -// expected-error@-1 {{header '<__algorithm/ranges_min_element.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/ranges_swap_ranges.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/ranges_swap_ranges.header.verify.cpp deleted file mode 100644 index 75effec55717..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/ranges_swap_ranges.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/ranges_swap_ranges.h> -// expected-error@-1 {{header '<__algorithm/ranges_swap_ranges.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/remove.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/remove.header.verify.cpp deleted file mode 100644 index 28bd2ae4ec57..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/remove.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/remove.h> -// expected-error@-1 {{header '<__algorithm/remove.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/remove_copy.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/remove_copy.header.verify.cpp deleted file mode 100644 index 9295ee87c317..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/remove_copy.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/remove_copy.h> -// expected-error@-1 {{header '<__algorithm/remove_copy.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/remove_copy_if.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/remove_copy_if.header.verify.cpp deleted file mode 100644 index c459322be218..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/remove_copy_if.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/remove_copy_if.h> -// expected-error@-1 {{header '<__algorithm/remove_copy_if.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/remove_if.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/remove_if.header.verify.cpp deleted file mode 100644 index 2686f21e637b..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/remove_if.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/remove_if.h> -// expected-error@-1 {{header '<__algorithm/remove_if.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/replace.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/replace.header.verify.cpp deleted file mode 100644 index 1699ab23bda9..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/replace.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/replace.h> -// expected-error@-1 {{header '<__algorithm/replace.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/replace_copy.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/replace_copy.header.verify.cpp deleted file mode 100644 index 71ec2246a4b7..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/replace_copy.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/replace_copy.h> -// expected-error@-1 {{header '<__algorithm/replace_copy.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/replace_copy_if.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/replace_copy_if.header.verify.cpp deleted file mode 100644 index e1b0e315042b..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/replace_copy_if.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/replace_copy_if.h> -// expected-error@-1 {{header '<__algorithm/replace_copy_if.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/replace_if.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/replace_if.header.verify.cpp deleted file mode 100644 index 6de27219ee5f..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/replace_if.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/replace_if.h> -// expected-error@-1 {{header '<__algorithm/replace_if.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/reverse.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/reverse.header.verify.cpp deleted file mode 100644 index e3582c339af1..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/reverse.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/reverse.h> -// expected-error@-1 {{header '<__algorithm/reverse.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/reverse_copy.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/reverse_copy.header.verify.cpp deleted file mode 100644 index e5a8b1b1cdfa..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/reverse_copy.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/reverse_copy.h> -// expected-error@-1 {{header '<__algorithm/reverse_copy.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/rotate.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/rotate.header.verify.cpp deleted file mode 100644 index 184cdfbf91cb..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/rotate.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/rotate.h> -// expected-error@-1 {{header '<__algorithm/rotate.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/rotate_copy.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/rotate_copy.header.verify.cpp deleted file mode 100644 index dfde90437dab..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/rotate_copy.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/rotate_copy.h> -// expected-error@-1 {{header '<__algorithm/rotate_copy.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/sample.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/sample.header.verify.cpp deleted file mode 100644 index 05b151fb96a6..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/sample.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/sample.h> -// expected-error@-1 {{header '<__algorithm/sample.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/search.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/search.header.verify.cpp deleted file mode 100644 index d3406b6a17f2..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/search.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/search.h> -// expected-error@-1 {{header '<__algorithm/search.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/search_n.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/search_n.header.verify.cpp deleted file mode 100644 index 5f0f4d261e84..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/search_n.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/search_n.h> -// expected-error@-1 {{header '<__algorithm/search_n.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/set_difference.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/set_difference.header.verify.cpp deleted file mode 100644 index f431fbee9656..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/set_difference.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/set_difference.h> -// expected-error@-1 {{header '<__algorithm/set_difference.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/set_intersection.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/set_intersection.header.verify.cpp deleted file mode 100644 index f6a26a5482e7..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/set_intersection.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/set_intersection.h> -// expected-error@-1 {{header '<__algorithm/set_intersection.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/set_symmetric_difference.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/set_symmetric_difference.header.verify.cpp deleted file mode 100644 index 229c510907ec..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/set_symmetric_difference.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/set_symmetric_difference.h> -// expected-error@-1 {{header '<__algorithm/set_symmetric_difference.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/set_union.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/set_union.header.verify.cpp deleted file mode 100644 index b35ab32b18e2..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/set_union.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/set_union.h> -// expected-error@-1 {{header '<__algorithm/set_union.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/shift_left.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/shift_left.header.verify.cpp deleted file mode 100644 index f2fecec92cf6..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/shift_left.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/shift_left.h> -// expected-error@-1 {{header '<__algorithm/shift_left.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/shift_right.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/shift_right.header.verify.cpp deleted file mode 100644 index 6bd216ef1e4d..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/shift_right.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/shift_right.h> -// expected-error@-1 {{header '<__algorithm/shift_right.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/shuffle.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/shuffle.header.verify.cpp deleted file mode 100644 index 4c44073842fd..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/shuffle.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/shuffle.h> -// expected-error@-1 {{header '<__algorithm/shuffle.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/sift_down.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/sift_down.header.verify.cpp deleted file mode 100644 index 18b904e80d8f..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/sift_down.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/sift_down.h> -// expected-error@-1 {{header '<__algorithm/sift_down.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/sort.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/sort.header.verify.cpp deleted file mode 100644 index 75349208f59e..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/sort.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/sort.h> -// expected-error@-1 {{header '<__algorithm/sort.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/sort_heap.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/sort_heap.header.verify.cpp deleted file mode 100644 index cfae00bc156d..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/sort_heap.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/sort_heap.h> -// expected-error@-1 {{header '<__algorithm/sort_heap.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/stable_partition.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/stable_partition.header.verify.cpp deleted file mode 100644 index 2f6e1dad1610..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/stable_partition.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/stable_partition.h> -// expected-error@-1 {{header '<__algorithm/stable_partition.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/stable_sort.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/stable_sort.header.verify.cpp deleted file mode 100644 index b4ffe259a297..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/stable_sort.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/stable_sort.h> -// expected-error@-1 {{header '<__algorithm/stable_sort.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/swap_ranges.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/swap_ranges.header.verify.cpp deleted file mode 100644 index 21e329bc699c..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/swap_ranges.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/swap_ranges.h> -// expected-error@-1 {{header '<__algorithm/swap_ranges.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/transform.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/transform.header.verify.cpp deleted file mode 100644 index 70c9ba0ed152..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/transform.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/transform.h> -// expected-error@-1 {{header '<__algorithm/transform.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/unique.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/unique.header.verify.cpp deleted file mode 100644 index 6515e2b52522..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/unique.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/unique.h> -// expected-error@-1 {{header '<__algorithm/unique.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/unique_copy.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/unique_copy.header.verify.cpp deleted file mode 100644 index 3a69cae6fe94..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/unique_copy.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/unique_copy.h> -// expected-error@-1 {{header '<__algorithm/unique_copy.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/unwrap_iter.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/unwrap_iter.header.verify.cpp deleted file mode 100644 index 1ca3e447d338..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/unwrap_iter.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/unwrap_iter.h> -// expected-error@-1 {{header '<__algorithm/unwrap_iter.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/upper_bound.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/upper_bound.header.verify.cpp deleted file mode 100644 index 0bb7cb152b23..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/algorithm/upper_bound.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__algorithm/upper_bound.h> -// expected-error@-1 {{header '<__algorithm/upper_bound.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/bit/bit_cast.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/bit/bit_cast.header.verify.cpp deleted file mode 100644 index eddf2385c361..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/bit/bit_cast.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__bit/bit_cast.h> -// expected-error@-1 {{header '<__bit/bit_cast.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/bit/byteswap.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/bit/byteswap.header.verify.cpp deleted file mode 100644 index 7b3e5d21ec15..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/bit/byteswap.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__bit/byteswap.h> -// expected-error@-1 {{header '<__bit/byteswap.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/bit_reference.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/bit_reference.header.verify.cpp deleted file mode 100644 index 0c933bf44703..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/bit_reference.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__bit_reference> -// expected-error@-1 {{header '<__bit_reference>' is an implementation detail; #include either '' or '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/bits.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/bits.header.verify.cpp deleted file mode 100644 index 84da00edd49e..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/bits.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__bits> -// expected-error@-1 {{header '<__bits>' is an implementation detail; #include one of {'', '', '', '', '', '', '', ''} instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/charconv/chars_format.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/charconv/chars_format.header.verify.cpp deleted file mode 100644 index 2012abe40586..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/charconv/chars_format.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__charconv/chars_format.h> -// expected-error@-1 {{header '<__charconv/chars_format.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/charconv/from_chars_result.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/charconv/from_chars_result.header.verify.cpp deleted file mode 100644 index 709bccd110a1..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/charconv/from_chars_result.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__charconv/from_chars_result.h> -// expected-error@-1 {{header '<__charconv/from_chars_result.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/charconv/to_chars_result.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/charconv/to_chars_result.header.verify.cpp deleted file mode 100644 index 0f33f6b5a60c..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/charconv/to_chars_result.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__charconv/to_chars_result.h> -// expected-error@-1 {{header '<__charconv/to_chars_result.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/chrono/calendar.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/chrono/calendar.header.verify.cpp deleted file mode 100644 index 6dd355dde00c..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/chrono/calendar.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__chrono/calendar.h> -// expected-error@-1 {{header '<__chrono/calendar.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/chrono/convert_to_timespec.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/chrono/convert_to_timespec.header.verify.cpp deleted file mode 100644 index 3ef663800ba6..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/chrono/convert_to_timespec.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__chrono/convert_to_timespec.h> -// expected-error@-1 {{header '<__chrono/convert_to_timespec.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/chrono/duration.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/chrono/duration.header.verify.cpp deleted file mode 100644 index 86c9557411a3..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/chrono/duration.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__chrono/duration.h> -// expected-error@-1 {{header '<__chrono/duration.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/chrono/file_clock.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/chrono/file_clock.header.verify.cpp deleted file mode 100644 index 659e5be23b66..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/chrono/file_clock.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__chrono/file_clock.h> -// expected-error@-1 {{header '<__chrono/file_clock.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/chrono/high_resolution_clock.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/chrono/high_resolution_clock.header.verify.cpp deleted file mode 100644 index c83012ccd63c..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/chrono/high_resolution_clock.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__chrono/high_resolution_clock.h> -// expected-error@-1 {{header '<__chrono/high_resolution_clock.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/chrono/steady_clock.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/chrono/steady_clock.header.verify.cpp deleted file mode 100644 index 2410ab2782f4..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/chrono/steady_clock.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__chrono/steady_clock.h> -// expected-error@-1 {{header '<__chrono/steady_clock.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/chrono/system_clock.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/chrono/system_clock.header.verify.cpp deleted file mode 100644 index fb6a22cbdca5..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/chrono/system_clock.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__chrono/system_clock.h> -// expected-error@-1 {{header '<__chrono/system_clock.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/chrono/time_point.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/chrono/time_point.header.verify.cpp deleted file mode 100644 index 876706651464..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/chrono/time_point.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__chrono/time_point.h> -// expected-error@-1 {{header '<__chrono/time_point.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/compare/common_comparison_category.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/compare/common_comparison_category.header.verify.cpp deleted file mode 100644 index 95ee7008565f..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/compare/common_comparison_category.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__compare/common_comparison_category.h> -// expected-error@-1 {{header '<__compare/common_comparison_category.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/compare/compare_partial_order_fallback.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/compare/compare_partial_order_fallback.header.verify.cpp deleted file mode 100644 index cf3722e72647..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/compare/compare_partial_order_fallback.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__compare/compare_partial_order_fallback.h> -// expected-error@-1 {{header '<__compare/compare_partial_order_fallback.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/compare/compare_strong_order_fallback.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/compare/compare_strong_order_fallback.header.verify.cpp deleted file mode 100644 index 83454ddec36a..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/compare/compare_strong_order_fallback.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__compare/compare_strong_order_fallback.h> -// expected-error@-1 {{header '<__compare/compare_strong_order_fallback.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/compare/compare_three_way.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/compare/compare_three_way.header.verify.cpp deleted file mode 100644 index 9ae046d7b85d..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/compare/compare_three_way.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__compare/compare_three_way.h> -// expected-error@-1 {{header '<__compare/compare_three_way.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/compare/compare_three_way_result.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/compare/compare_three_way_result.header.verify.cpp deleted file mode 100644 index 0433bf1835b8..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/compare/compare_three_way_result.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__compare/compare_three_way_result.h> -// expected-error@-1 {{header '<__compare/compare_three_way_result.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/compare/compare_weak_order_fallback.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/compare/compare_weak_order_fallback.header.verify.cpp deleted file mode 100644 index b0905d33c24c..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/compare/compare_weak_order_fallback.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__compare/compare_weak_order_fallback.h> -// expected-error@-1 {{header '<__compare/compare_weak_order_fallback.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/compare/is_eq.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/compare/is_eq.header.verify.cpp deleted file mode 100644 index 498f90836c3b..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/compare/is_eq.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__compare/is_eq.h> -// expected-error@-1 {{header '<__compare/is_eq.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/compare/ordering.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/compare/ordering.header.verify.cpp deleted file mode 100644 index 630176a03b2d..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/compare/ordering.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__compare/ordering.h> -// expected-error@-1 {{header '<__compare/ordering.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/compare/partial_order.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/compare/partial_order.header.verify.cpp deleted file mode 100644 index d3e2ea3df5cc..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/compare/partial_order.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__compare/partial_order.h> -// expected-error@-1 {{header '<__compare/partial_order.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/compare/strong_order.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/compare/strong_order.header.verify.cpp deleted file mode 100644 index 191489cefd59..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/compare/strong_order.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__compare/strong_order.h> -// expected-error@-1 {{header '<__compare/strong_order.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/compare/synth_three_way.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/compare/synth_three_way.header.verify.cpp deleted file mode 100644 index 39f5577c7463..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/compare/synth_three_way.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__compare/synth_three_way.h> -// expected-error@-1 {{header '<__compare/synth_three_way.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/compare/three_way_comparable.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/compare/three_way_comparable.header.verify.cpp deleted file mode 100644 index c8cd9acafd54..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/compare/three_way_comparable.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__compare/three_way_comparable.h> -// expected-error@-1 {{header '<__compare/three_way_comparable.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/compare/weak_order.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/compare/weak_order.header.verify.cpp deleted file mode 100644 index e62639b4a5db..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/compare/weak_order.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__compare/weak_order.h> -// expected-error@-1 {{header '<__compare/weak_order.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/arithmetic.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/arithmetic.header.verify.cpp deleted file mode 100644 index b9eafc39e187..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/arithmetic.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__concepts/arithmetic.h> -// expected-error@-1 {{header '<__concepts/arithmetic.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/assignable.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/assignable.header.verify.cpp deleted file mode 100644 index e211df44a8a6..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/assignable.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__concepts/assignable.h> -// expected-error@-1 {{header '<__concepts/assignable.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/boolean_testable.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/boolean_testable.header.verify.cpp deleted file mode 100644 index 65855566d175..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/boolean_testable.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__concepts/boolean_testable.h> -// expected-error@-1 {{header '<__concepts/boolean_testable.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/class_or_enum.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/class_or_enum.header.verify.cpp deleted file mode 100644 index 04955ccd889b..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/class_or_enum.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__concepts/class_or_enum.h> -// expected-error@-1 {{header '<__concepts/class_or_enum.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/common_reference_with.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/common_reference_with.header.verify.cpp deleted file mode 100644 index 9cf4ace1f6ae..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/common_reference_with.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__concepts/common_reference_with.h> -// expected-error@-1 {{header '<__concepts/common_reference_with.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/common_with.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/common_with.header.verify.cpp deleted file mode 100644 index 22b100964f2a..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/common_with.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__concepts/common_with.h> -// expected-error@-1 {{header '<__concepts/common_with.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/constructible.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/constructible.header.verify.cpp deleted file mode 100644 index 2798aaafdb0c..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/constructible.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__concepts/constructible.h> -// expected-error@-1 {{header '<__concepts/constructible.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/convertible_to.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/convertible_to.header.verify.cpp deleted file mode 100644 index a1f4cf581c9e..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/convertible_to.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__concepts/convertible_to.h> -// expected-error@-1 {{header '<__concepts/convertible_to.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/copyable.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/copyable.header.verify.cpp deleted file mode 100644 index ec5870018050..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/copyable.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__concepts/copyable.h> -// expected-error@-1 {{header '<__concepts/copyable.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/derived_from.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/derived_from.header.verify.cpp deleted file mode 100644 index cb0398c81ca1..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/derived_from.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__concepts/derived_from.h> -// expected-error@-1 {{header '<__concepts/derived_from.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/destructible.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/destructible.header.verify.cpp deleted file mode 100644 index 976081755e45..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/destructible.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__concepts/destructible.h> -// expected-error@-1 {{header '<__concepts/destructible.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/different_from.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/different_from.header.verify.cpp deleted file mode 100644 index 03879286350c..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/different_from.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__concepts/different_from.h> -// expected-error@-1 {{header '<__concepts/different_from.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/equality_comparable.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/equality_comparable.header.verify.cpp deleted file mode 100644 index 7223d23068c3..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/equality_comparable.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__concepts/equality_comparable.h> -// expected-error@-1 {{header '<__concepts/equality_comparable.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/invocable.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/invocable.header.verify.cpp deleted file mode 100644 index 9014f50907a3..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/invocable.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__concepts/invocable.h> -// expected-error@-1 {{header '<__concepts/invocable.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/movable.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/movable.header.verify.cpp deleted file mode 100644 index bfb3ccfa0517..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/movable.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__concepts/movable.h> -// expected-error@-1 {{header '<__concepts/movable.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/predicate.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/predicate.header.verify.cpp deleted file mode 100644 index fbf2c8854fbe..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/predicate.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__concepts/predicate.h> -// expected-error@-1 {{header '<__concepts/predicate.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/regular.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/regular.header.verify.cpp deleted file mode 100644 index 5a8e6302a019..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/regular.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__concepts/regular.h> -// expected-error@-1 {{header '<__concepts/regular.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/relation.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/relation.header.verify.cpp deleted file mode 100644 index 7e42452313dd..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/relation.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__concepts/relation.h> -// expected-error@-1 {{header '<__concepts/relation.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/same_as.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/same_as.header.verify.cpp deleted file mode 100644 index da65a3aeef21..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/same_as.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__concepts/same_as.h> -// expected-error@-1 {{header '<__concepts/same_as.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/semiregular.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/semiregular.header.verify.cpp deleted file mode 100644 index a64adbe87355..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/semiregular.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__concepts/semiregular.h> -// expected-error@-1 {{header '<__concepts/semiregular.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/swappable.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/swappable.header.verify.cpp deleted file mode 100644 index 9e8f242f060f..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/swappable.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__concepts/swappable.h> -// expected-error@-1 {{header '<__concepts/swappable.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/totally_ordered.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/totally_ordered.header.verify.cpp deleted file mode 100644 index 10ac945917dc..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/totally_ordered.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__concepts/totally_ordered.h> -// expected-error@-1 {{header '<__concepts/totally_ordered.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/coroutine/coroutine_handle.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/coroutine/coroutine_handle.header.verify.cpp deleted file mode 100644 index 79bb431606e5..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/coroutine/coroutine_handle.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__coroutine/coroutine_handle.h> -// expected-error@-1 {{header '<__coroutine/coroutine_handle.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/coroutine/coroutine_traits.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/coroutine/coroutine_traits.header.verify.cpp deleted file mode 100644 index 7457a8daed9f..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/coroutine/coroutine_traits.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__coroutine/coroutine_traits.h> -// expected-error@-1 {{header '<__coroutine/coroutine_traits.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/coroutine/noop_coroutine_handle.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/coroutine/noop_coroutine_handle.header.verify.cpp deleted file mode 100644 index 618da5039482..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/coroutine/noop_coroutine_handle.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__coroutine/noop_coroutine_handle.h> -// expected-error@-1 {{header '<__coroutine/noop_coroutine_handle.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/coroutine/trivial_awaitables.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/coroutine/trivial_awaitables.header.verify.cpp deleted file mode 100644 index 9cbf71ec02cf..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/coroutine/trivial_awaitables.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__coroutine/trivial_awaitables.h> -// expected-error@-1 {{header '<__coroutine/trivial_awaitables.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/copy_options.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/copy_options.header.verify.cpp deleted file mode 100644 index 9c237decf24e..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/copy_options.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__filesystem/copy_options.h> -// expected-error@-1 {{header '<__filesystem/copy_options.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/directory_entry.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/directory_entry.header.verify.cpp deleted file mode 100644 index dfff24ac9fa1..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/directory_entry.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__filesystem/directory_entry.h> -// expected-error@-1 {{header '<__filesystem/directory_entry.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/directory_iterator.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/directory_iterator.header.verify.cpp deleted file mode 100644 index 5f0eef2129ce..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/directory_iterator.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__filesystem/directory_iterator.h> -// expected-error@-1 {{header '<__filesystem/directory_iterator.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/directory_options.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/directory_options.header.verify.cpp deleted file mode 100644 index a4ff03e95a1f..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/directory_options.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__filesystem/directory_options.h> -// expected-error@-1 {{header '<__filesystem/directory_options.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/file_status.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/file_status.header.verify.cpp deleted file mode 100644 index ca4571d85721..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/file_status.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__filesystem/file_status.h> -// expected-error@-1 {{header '<__filesystem/file_status.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/file_time_type.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/file_time_type.header.verify.cpp deleted file mode 100644 index 6d5d939df461..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/file_time_type.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__filesystem/file_time_type.h> -// expected-error@-1 {{header '<__filesystem/file_time_type.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/file_type.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/file_type.header.verify.cpp deleted file mode 100644 index f05dccdb340c..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/file_type.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__filesystem/file_type.h> -// expected-error@-1 {{header '<__filesystem/file_type.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/filesystem_error.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/filesystem_error.header.verify.cpp deleted file mode 100644 index b109cc0900ca..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/filesystem_error.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__filesystem/filesystem_error.h> -// expected-error@-1 {{header '<__filesystem/filesystem_error.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/operations.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/operations.header.verify.cpp deleted file mode 100644 index f87159ff40ba..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/operations.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__filesystem/operations.h> -// expected-error@-1 {{header '<__filesystem/operations.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/path.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/path.header.verify.cpp deleted file mode 100644 index fb549c541854..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/path.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__filesystem/path.h> -// expected-error@-1 {{header '<__filesystem/path.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/path_iterator.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/path_iterator.header.verify.cpp deleted file mode 100644 index 274cf3a932d8..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/path_iterator.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__filesystem/path_iterator.h> -// expected-error@-1 {{header '<__filesystem/path_iterator.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/perm_options.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/perm_options.header.verify.cpp deleted file mode 100644 index cf657cddc5da..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/perm_options.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__filesystem/perm_options.h> -// expected-error@-1 {{header '<__filesystem/perm_options.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/perms.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/perms.header.verify.cpp deleted file mode 100644 index 5fc3b72fd686..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/perms.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__filesystem/perms.h> -// expected-error@-1 {{header '<__filesystem/perms.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/recursive_directory_iterator.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/recursive_directory_iterator.header.verify.cpp deleted file mode 100644 index d280380df595..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/recursive_directory_iterator.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__filesystem/recursive_directory_iterator.h> -// expected-error@-1 {{header '<__filesystem/recursive_directory_iterator.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/space_info.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/space_info.header.verify.cpp deleted file mode 100644 index a2b4b7dc49b5..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/space_info.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__filesystem/space_info.h> -// expected-error@-1 {{header '<__filesystem/space_info.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/u8path.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/u8path.header.verify.cpp deleted file mode 100644 index 12aea946b0db..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/filesystem/u8path.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__filesystem/u8path.h> -// expected-error@-1 {{header '<__filesystem/u8path.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/format/format_arg.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/format/format_arg.header.verify.cpp deleted file mode 100644 index 28dd06337090..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/format/format_arg.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__format/format_arg.h> -// expected-error@-1 {{header '<__format/format_arg.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/format/format_args.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/format/format_args.header.verify.cpp deleted file mode 100644 index 1d014024fc4c..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/format/format_args.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__format/format_args.h> -// expected-error@-1 {{header '<__format/format_args.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/format/format_context.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/format/format_context.header.verify.cpp deleted file mode 100644 index cbf08156bc0d..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/format/format_context.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__format/format_context.h> -// expected-error@-1 {{header '<__format/format_context.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/format/format_error.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/format/format_error.header.verify.cpp deleted file mode 100644 index b4575974090b..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/format/format_error.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__format/format_error.h> -// expected-error@-1 {{header '<__format/format_error.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/format/format_fwd.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/format/format_fwd.header.verify.cpp deleted file mode 100644 index ea53ccbf7b11..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/format/format_fwd.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__format/format_fwd.h> -// expected-error@-1 {{header '<__format/format_fwd.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/format/format_parse_context.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/format/format_parse_context.header.verify.cpp deleted file mode 100644 index b494e0c41654..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/format/format_parse_context.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__format/format_parse_context.h> -// expected-error@-1 {{header '<__format/format_parse_context.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/format/format_string.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/format/format_string.header.verify.cpp deleted file mode 100644 index ba2d2ed42d50..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/format/format_string.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__format/format_string.h> -// expected-error@-1 {{header '<__format/format_string.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/format/format_to_n_result.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/format/format_to_n_result.header.verify.cpp deleted file mode 100644 index 235c6cd7645c..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/format/format_to_n_result.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__format/format_to_n_result.h> -// expected-error@-1 {{header '<__format/format_to_n_result.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter.header.verify.cpp deleted file mode 100644 index b7681bc4339c..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__format/formatter.h> -// expected-error@-1 {{header '<__format/formatter.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter_bool.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter_bool.header.verify.cpp deleted file mode 100644 index ddba2326ecb5..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter_bool.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__format/formatter_bool.h> -// expected-error@-1 {{header '<__format/formatter_bool.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter_char.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter_char.header.verify.cpp deleted file mode 100644 index 5360cf0783e4..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter_char.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__format/formatter_char.h> -// expected-error@-1 {{header '<__format/formatter_char.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter_floating_point.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter_floating_point.header.verify.cpp deleted file mode 100644 index dc672749e71f..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter_floating_point.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__format/formatter_floating_point.h> -// expected-error@-1 {{header '<__format/formatter_floating_point.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter_integer.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter_integer.header.verify.cpp deleted file mode 100644 index ce986d0cec47..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter_integer.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__format/formatter_integer.h> -// expected-error@-1 {{header '<__format/formatter_integer.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter_integral.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter_integral.header.verify.cpp deleted file mode 100644 index 5945bed564cf..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter_integral.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__format/formatter_integral.h> -// expected-error@-1 {{header '<__format/formatter_integral.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter_pointer.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter_pointer.header.verify.cpp deleted file mode 100644 index f65759f6cccc..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter_pointer.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__format/formatter_pointer.h> -// expected-error@-1 {{header '<__format/formatter_pointer.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter_string.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter_string.header.verify.cpp deleted file mode 100644 index 5caea05f2bf3..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/format/formatter_string.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__format/formatter_string.h> -// expected-error@-1 {{header '<__format/formatter_string.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/format/parser_std_format_spec.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/format/parser_std_format_spec.header.verify.cpp deleted file mode 100644 index b1db7db78a0e..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/format/parser_std_format_spec.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__format/parser_std_format_spec.h> -// expected-error@-1 {{header '<__format/parser_std_format_spec.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/binary_function.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/binary_function.header.verify.cpp deleted file mode 100644 index 1c8046304121..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/binary_function.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/binary_function.h> -// expected-error@-1 {{header '<__functional/binary_function.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/binary_negate.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/binary_negate.header.verify.cpp deleted file mode 100644 index 3cf5bd5b495e..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/binary_negate.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/binary_negate.h> -// expected-error@-1 {{header '<__functional/binary_negate.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/bind.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/bind.header.verify.cpp deleted file mode 100644 index 3e24fad757bd..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/bind.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/bind.h> -// expected-error@-1 {{header '<__functional/bind.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/bind_back.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/bind_back.header.verify.cpp deleted file mode 100644 index de078765f77e..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/bind_back.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/bind_back.h> -// expected-error@-1 {{header '<__functional/bind_back.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/bind_front.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/bind_front.header.verify.cpp deleted file mode 100644 index e81725457b40..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/bind_front.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/bind_front.h> -// expected-error@-1 {{header '<__functional/bind_front.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/binder1st.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/binder1st.header.verify.cpp deleted file mode 100644 index 03922432fb26..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/binder1st.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/binder1st.h> -// expected-error@-1 {{header '<__functional/binder1st.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/binder2nd.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/binder2nd.header.verify.cpp deleted file mode 100644 index 475519090977..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/binder2nd.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/binder2nd.h> -// expected-error@-1 {{header '<__functional/binder2nd.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/compose.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/compose.header.verify.cpp deleted file mode 100644 index 6c2a74bec52a..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/compose.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/compose.h> -// expected-error@-1 {{header '<__functional/compose.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/default_searcher.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/default_searcher.header.verify.cpp deleted file mode 100644 index 91c87e422d8a..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/default_searcher.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/default_searcher.h> -// expected-error@-1 {{header '<__functional/default_searcher.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/function.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/function.header.verify.cpp deleted file mode 100644 index 1e89dd01ff33..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/function.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/function.h> -// expected-error@-1 {{header '<__functional/function.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/hash.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/hash.header.verify.cpp deleted file mode 100644 index 33ff916c650d..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/hash.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/hash.h> -// expected-error@-1 {{header '<__functional/hash.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/identity.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/identity.header.verify.cpp deleted file mode 100644 index bf9039623a42..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/identity.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/identity.h> -// expected-error@-1 {{header '<__functional/identity.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/invoke.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/invoke.header.verify.cpp deleted file mode 100644 index 9a44e3d88db1..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/invoke.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/invoke.h> -// expected-error@-1 {{header '<__functional/invoke.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/is_transparent.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/is_transparent.header.verify.cpp deleted file mode 100644 index efba9ca1c693..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/is_transparent.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/is_transparent.h> -// expected-error@-1 {{header '<__functional/is_transparent.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/mem_fn.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/mem_fn.header.verify.cpp deleted file mode 100644 index 8b7e92277a0c..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/mem_fn.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/mem_fn.h> -// expected-error@-1 {{header '<__functional/mem_fn.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/mem_fun_ref.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/mem_fun_ref.header.verify.cpp deleted file mode 100644 index 400f78b63369..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/mem_fun_ref.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/mem_fun_ref.h> -// expected-error@-1 {{header '<__functional/mem_fun_ref.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/not_fn.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/not_fn.header.verify.cpp deleted file mode 100644 index 034b976219b6..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/not_fn.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/not_fn.h> -// expected-error@-1 {{header '<__functional/not_fn.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/operations.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/operations.header.verify.cpp deleted file mode 100644 index 480358764243..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/operations.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/operations.h> -// expected-error@-1 {{header '<__functional/operations.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/perfect_forward.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/perfect_forward.header.verify.cpp deleted file mode 100644 index 2832238da9b0..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/perfect_forward.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/perfect_forward.h> -// expected-error@-1 {{header '<__functional/perfect_forward.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/pointer_to_binary_function.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/pointer_to_binary_function.header.verify.cpp deleted file mode 100644 index d0826597e0a0..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/pointer_to_binary_function.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/pointer_to_binary_function.h> -// expected-error@-1 {{header '<__functional/pointer_to_binary_function.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/pointer_to_unary_function.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/pointer_to_unary_function.header.verify.cpp deleted file mode 100644 index 549f83d73fff..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/pointer_to_unary_function.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/pointer_to_unary_function.h> -// expected-error@-1 {{header '<__functional/pointer_to_unary_function.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/ranges_operations.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/ranges_operations.header.verify.cpp deleted file mode 100644 index 9af27d0c8f04..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/ranges_operations.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/ranges_operations.h> -// expected-error@-1 {{header '<__functional/ranges_operations.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/reference_wrapper.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/reference_wrapper.header.verify.cpp deleted file mode 100644 index d295cd270067..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/reference_wrapper.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/reference_wrapper.h> -// expected-error@-1 {{header '<__functional/reference_wrapper.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/unary_function.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/unary_function.header.verify.cpp deleted file mode 100644 index d56433acdc10..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/unary_function.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/unary_function.h> -// expected-error@-1 {{header '<__functional/unary_function.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/unary_negate.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/unary_negate.header.verify.cpp deleted file mode 100644 index 00f8bffc0cca..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/unary_negate.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/unary_negate.h> -// expected-error@-1 {{header '<__functional/unary_negate.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/unwrap_ref.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/unwrap_ref.header.verify.cpp deleted file mode 100644 index c5d1c5220519..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/unwrap_ref.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/unwrap_ref.h> -// expected-error@-1 {{header '<__functional/unwrap_ref.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/functional/weak_result_type.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/functional/weak_result_type.header.verify.cpp deleted file mode 100644 index 7e0999aa38e1..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/functional/weak_result_type.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__functional/weak_result_type.h> -// expected-error@-1 {{header '<__functional/weak_result_type.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ios/fpos.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ios/fpos.header.verify.cpp deleted file mode 100644 index e89487fe5f06..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ios/fpos.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ios/fpos.h> -// expected-error@-1 {{header '<__ios/fpos.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/access.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/access.header.verify.cpp deleted file mode 100644 index 79535bd0eb20..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/access.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/access.h> -// expected-error@-1 {{header '<__iterator/access.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/advance.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/advance.header.verify.cpp deleted file mode 100644 index e11370874c36..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/advance.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/advance.h> -// expected-error@-1 {{header '<__iterator/advance.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/back_insert_iterator.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/back_insert_iterator.header.verify.cpp deleted file mode 100644 index 8602b0bc773c..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/back_insert_iterator.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/back_insert_iterator.h> -// expected-error@-1 {{header '<__iterator/back_insert_iterator.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/common_iterator.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/common_iterator.header.verify.cpp deleted file mode 100644 index 1f3b6ecea91c..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/common_iterator.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/common_iterator.h> -// expected-error@-1 {{header '<__iterator/common_iterator.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/concepts.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/concepts.header.verify.cpp deleted file mode 100644 index 78955c97a12d..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/concepts.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/concepts.h> -// expected-error@-1 {{header '<__iterator/concepts.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/counted_iterator.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/counted_iterator.header.verify.cpp deleted file mode 100644 index ee80345e1f11..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/counted_iterator.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/counted_iterator.h> -// expected-error@-1 {{header '<__iterator/counted_iterator.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/data.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/data.header.verify.cpp deleted file mode 100644 index 782b7c18cdc3..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/data.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/data.h> -// expected-error@-1 {{header '<__iterator/data.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/default_sentinel.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/default_sentinel.header.verify.cpp deleted file mode 100644 index 3a09394918bc..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/default_sentinel.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/default_sentinel.h> -// expected-error@-1 {{header '<__iterator/default_sentinel.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/distance.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/distance.header.verify.cpp deleted file mode 100644 index fbf5172947d6..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/distance.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/distance.h> -// expected-error@-1 {{header '<__iterator/distance.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/empty.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/empty.header.verify.cpp deleted file mode 100644 index f5485cc7bcca..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/empty.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/empty.h> -// expected-error@-1 {{header '<__iterator/empty.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/erase_if_container.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/erase_if_container.header.verify.cpp deleted file mode 100644 index db5ff983283f..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/erase_if_container.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/erase_if_container.h> -// expected-error@-1 {{header '<__iterator/erase_if_container.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/front_insert_iterator.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/front_insert_iterator.header.verify.cpp deleted file mode 100644 index eac90efc7c1f..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/front_insert_iterator.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/front_insert_iterator.h> -// expected-error@-1 {{header '<__iterator/front_insert_iterator.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/incrementable_traits.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/incrementable_traits.header.verify.cpp deleted file mode 100644 index 4668050b3687..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/incrementable_traits.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/incrementable_traits.h> -// expected-error@-1 {{header '<__iterator/incrementable_traits.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/indirectly_comparable.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/indirectly_comparable.header.verify.cpp deleted file mode 100644 index ec36018ac006..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/indirectly_comparable.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/indirectly_comparable.h> -// expected-error@-1 {{header '<__iterator/indirectly_comparable.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/insert_iterator.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/insert_iterator.header.verify.cpp deleted file mode 100644 index 1cedde0c5175..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/insert_iterator.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/insert_iterator.h> -// expected-error@-1 {{header '<__iterator/insert_iterator.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/istream_iterator.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/istream_iterator.header.verify.cpp deleted file mode 100644 index 72e813fb1aaa..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/istream_iterator.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/istream_iterator.h> -// expected-error@-1 {{header '<__iterator/istream_iterator.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/istreambuf_iterator.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/istreambuf_iterator.header.verify.cpp deleted file mode 100644 index 53358d847d8a..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/istreambuf_iterator.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/istreambuf_iterator.h> -// expected-error@-1 {{header '<__iterator/istreambuf_iterator.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/iter_move.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/iter_move.header.verify.cpp deleted file mode 100644 index 479b7d155958..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/iter_move.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/iter_move.h> -// expected-error@-1 {{header '<__iterator/iter_move.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/iter_swap.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/iter_swap.header.verify.cpp deleted file mode 100644 index 7d863d1b6487..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/iter_swap.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/iter_swap.h> -// expected-error@-1 {{header '<__iterator/iter_swap.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/iterator.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/iterator.header.verify.cpp deleted file mode 100644 index 43c691945d6d..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/iterator.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/iterator.h> -// expected-error@-1 {{header '<__iterator/iterator.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/iterator_traits.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/iterator_traits.header.verify.cpp deleted file mode 100644 index 5f8e27cfc03d..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/iterator_traits.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/iterator_traits.h> -// expected-error@-1 {{header '<__iterator/iterator_traits.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/mergeable.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/mergeable.header.verify.cpp deleted file mode 100644 index 7a3fd4040b07..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/mergeable.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/mergeable.h> -// expected-error@-1 {{header '<__iterator/mergeable.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/move_iterator.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/move_iterator.header.verify.cpp deleted file mode 100644 index 5a209b771e26..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/move_iterator.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/move_iterator.h> -// expected-error@-1 {{header '<__iterator/move_iterator.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/next.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/next.header.verify.cpp deleted file mode 100644 index eb13fd697871..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/next.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/next.h> -// expected-error@-1 {{header '<__iterator/next.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/ostream_iterator.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/ostream_iterator.header.verify.cpp deleted file mode 100644 index bb732c57511e..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/ostream_iterator.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/ostream_iterator.h> -// expected-error@-1 {{header '<__iterator/ostream_iterator.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/ostreambuf_iterator.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/ostreambuf_iterator.header.verify.cpp deleted file mode 100644 index f40c05327df7..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/ostreambuf_iterator.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/ostreambuf_iterator.h> -// expected-error@-1 {{header '<__iterator/ostreambuf_iterator.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/permutable.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/permutable.header.verify.cpp deleted file mode 100644 index c4a8467d7ad2..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/permutable.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/permutable.h> -// expected-error@-1 {{header '<__iterator/permutable.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/prev.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/prev.header.verify.cpp deleted file mode 100644 index 66cf921a243a..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/prev.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/prev.h> -// expected-error@-1 {{header '<__iterator/prev.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/projected.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/projected.header.verify.cpp deleted file mode 100644 index b679891b53d1..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/projected.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/projected.h> -// expected-error@-1 {{header '<__iterator/projected.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/readable_traits.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/readable_traits.header.verify.cpp deleted file mode 100644 index 46141daed71d..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/readable_traits.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/readable_traits.h> -// expected-error@-1 {{header '<__iterator/readable_traits.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/reverse_access.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/reverse_access.header.verify.cpp deleted file mode 100644 index ff57c07b5401..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/reverse_access.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/reverse_access.h> -// expected-error@-1 {{header '<__iterator/reverse_access.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/reverse_iterator.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/reverse_iterator.header.verify.cpp deleted file mode 100644 index 9c384b51c470..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/reverse_iterator.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/reverse_iterator.h> -// expected-error@-1 {{header '<__iterator/reverse_iterator.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/size.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/size.header.verify.cpp deleted file mode 100644 index 7b584cad1cf2..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/size.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/size.h> -// expected-error@-1 {{header '<__iterator/size.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/sortable.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/sortable.header.verify.cpp deleted file mode 100644 index b6ab55586db8..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/sortable.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/sortable.h> -// expected-error@-1 {{header '<__iterator/sortable.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/unreachable_sentinel.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/unreachable_sentinel.header.verify.cpp deleted file mode 100644 index 840d27a42fd2..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/unreachable_sentinel.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/unreachable_sentinel.h> -// expected-error@-1 {{header '<__iterator/unreachable_sentinel.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/wrap_iter.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/iterator/wrap_iter.header.verify.cpp deleted file mode 100644 index b91b55741610..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/iterator/wrap_iter.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__iterator/wrap_iter.h> -// expected-error@-1 {{header '<__iterator/wrap_iter.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/locale.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/locale.header.verify.cpp deleted file mode 100644 index 0e292cd3fa2f..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/locale.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__locale> -// expected-error@-1 {{header '<__locale>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/memory/addressof.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/memory/addressof.header.verify.cpp deleted file mode 100644 index be058159c013..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/memory/addressof.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__memory/addressof.h> -// expected-error@-1 {{header '<__memory/addressof.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/memory/allocation_guard.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/memory/allocation_guard.header.verify.cpp deleted file mode 100644 index 5b7b85b3c7ec..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/memory/allocation_guard.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__memory/allocation_guard.h> -// expected-error@-1 {{header '<__memory/allocation_guard.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/memory/allocator.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/memory/allocator.header.verify.cpp deleted file mode 100644 index b566354c96c5..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/memory/allocator.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__memory/allocator.h> -// expected-error@-1 {{header '<__memory/allocator.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/memory/allocator_arg_t.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/memory/allocator_arg_t.header.verify.cpp deleted file mode 100644 index 6dcfaf06a14c..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/memory/allocator_arg_t.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__memory/allocator_arg_t.h> -// expected-error@-1 {{header '<__memory/allocator_arg_t.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/memory/allocator_traits.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/memory/allocator_traits.header.verify.cpp deleted file mode 100644 index 22b14cb292b5..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/memory/allocator_traits.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__memory/allocator_traits.h> -// expected-error@-1 {{header '<__memory/allocator_traits.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/memory/auto_ptr.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/memory/auto_ptr.header.verify.cpp deleted file mode 100644 index 804ed70eb079..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/memory/auto_ptr.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__memory/auto_ptr.h> -// expected-error@-1 {{header '<__memory/auto_ptr.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/memory/compressed_pair.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/memory/compressed_pair.header.verify.cpp deleted file mode 100644 index 8aea12ca764f..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/memory/compressed_pair.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__memory/compressed_pair.h> -// expected-error@-1 {{header '<__memory/compressed_pair.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/memory/concepts.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/memory/concepts.header.verify.cpp deleted file mode 100644 index d20bfdd59cca..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/memory/concepts.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__memory/concepts.h> -// expected-error@-1 {{header '<__memory/concepts.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/memory/construct_at.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/memory/construct_at.header.verify.cpp deleted file mode 100644 index 1e81ab0acebd..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/memory/construct_at.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__memory/construct_at.h> -// expected-error@-1 {{header '<__memory/construct_at.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/memory/pointer_traits.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/memory/pointer_traits.header.verify.cpp deleted file mode 100644 index ac55a78c8a21..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/memory/pointer_traits.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__memory/pointer_traits.h> -// expected-error@-1 {{header '<__memory/pointer_traits.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/memory/ranges_construct_at.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/memory/ranges_construct_at.header.verify.cpp deleted file mode 100644 index ae99c73d348f..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/memory/ranges_construct_at.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__memory/ranges_construct_at.h> -// expected-error@-1 {{header '<__memory/ranges_construct_at.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/memory/ranges_uninitialized_algorithms.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/memory/ranges_uninitialized_algorithms.header.verify.cpp deleted file mode 100644 index 1b2127900f1e..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/memory/ranges_uninitialized_algorithms.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__memory/ranges_uninitialized_algorithms.h> -// expected-error@-1 {{header '<__memory/ranges_uninitialized_algorithms.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/memory/raw_storage_iterator.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/memory/raw_storage_iterator.header.verify.cpp deleted file mode 100644 index 72276678bced..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/memory/raw_storage_iterator.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__memory/raw_storage_iterator.h> -// expected-error@-1 {{header '<__memory/raw_storage_iterator.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/memory/shared_ptr.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/memory/shared_ptr.header.verify.cpp deleted file mode 100644 index add331fd182a..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/memory/shared_ptr.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__memory/shared_ptr.h> -// expected-error@-1 {{header '<__memory/shared_ptr.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/memory/temporary_buffer.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/memory/temporary_buffer.header.verify.cpp deleted file mode 100644 index d3bb9fb3019c..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/memory/temporary_buffer.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__memory/temporary_buffer.h> -// expected-error@-1 {{header '<__memory/temporary_buffer.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/memory/uninitialized_algorithms.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/memory/uninitialized_algorithms.header.verify.cpp deleted file mode 100644 index 3bbb30a51a0f..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/memory/uninitialized_algorithms.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__memory/uninitialized_algorithms.h> -// expected-error@-1 {{header '<__memory/uninitialized_algorithms.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/memory/unique_ptr.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/memory/unique_ptr.header.verify.cpp deleted file mode 100644 index aca4913eaffe..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/memory/unique_ptr.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__memory/unique_ptr.h> -// expected-error@-1 {{header '<__memory/unique_ptr.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/memory/uses_allocator.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/memory/uses_allocator.header.verify.cpp deleted file mode 100644 index 7e7015ae4d13..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/memory/uses_allocator.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__memory/uses_allocator.h> -// expected-error@-1 {{header '<__memory/uses_allocator.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/memory/voidify.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/memory/voidify.header.verify.cpp deleted file mode 100644 index bbd3f9c27ac3..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/memory/voidify.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__memory/voidify.h> -// expected-error@-1 {{header '<__memory/voidify.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/mutex_base.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/mutex_base.header.verify.cpp deleted file mode 100644 index f591466781cf..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/mutex_base.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__mutex_base> -// expected-error@-1 {{header '<__mutex_base>' is an implementation detail; #include either '' or '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/node_handle.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/node_handle.header.verify.cpp deleted file mode 100644 index d436894e6166..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/node_handle.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__node_handle> -// expected-error@-1 {{header '<__node_handle>' is an implementation detail; #include one of {'', '', '', ''} instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/accumulate.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/numeric/accumulate.header.verify.cpp deleted file mode 100644 index 80572fe9c351..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/accumulate.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__numeric/accumulate.h> -// expected-error@-1 {{header '<__numeric/accumulate.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/adjacent_difference.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/numeric/adjacent_difference.header.verify.cpp deleted file mode 100644 index 2ae81dc749ac..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/adjacent_difference.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__numeric/adjacent_difference.h> -// expected-error@-1 {{header '<__numeric/adjacent_difference.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/exclusive_scan.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/numeric/exclusive_scan.header.verify.cpp deleted file mode 100644 index 6262db775d2d..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/exclusive_scan.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__numeric/exclusive_scan.h> -// expected-error@-1 {{header '<__numeric/exclusive_scan.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/gcd_lcm.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/numeric/gcd_lcm.header.verify.cpp deleted file mode 100644 index 9b883f6d010f..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/gcd_lcm.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__numeric/gcd_lcm.h> -// expected-error@-1 {{header '<__numeric/gcd_lcm.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/inclusive_scan.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/numeric/inclusive_scan.header.verify.cpp deleted file mode 100644 index 68e76d2d1842..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/inclusive_scan.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__numeric/inclusive_scan.h> -// expected-error@-1 {{header '<__numeric/inclusive_scan.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/inner_product.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/numeric/inner_product.header.verify.cpp deleted file mode 100644 index add4f4a78099..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/inner_product.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__numeric/inner_product.h> -// expected-error@-1 {{header '<__numeric/inner_product.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/iota.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/numeric/iota.header.verify.cpp deleted file mode 100644 index 9e5983602266..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/iota.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__numeric/iota.h> -// expected-error@-1 {{header '<__numeric/iota.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/midpoint.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/numeric/midpoint.header.verify.cpp deleted file mode 100644 index 9c02085bc0cc..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/midpoint.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__numeric/midpoint.h> -// expected-error@-1 {{header '<__numeric/midpoint.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/partial_sum.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/numeric/partial_sum.header.verify.cpp deleted file mode 100644 index 8cec77fe1d8d..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/partial_sum.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__numeric/partial_sum.h> -// expected-error@-1 {{header '<__numeric/partial_sum.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/reduce.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/numeric/reduce.header.verify.cpp deleted file mode 100644 index 0664641e6470..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/reduce.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__numeric/reduce.h> -// expected-error@-1 {{header '<__numeric/reduce.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/transform_exclusive_scan.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/numeric/transform_exclusive_scan.header.verify.cpp deleted file mode 100644 index cc47065de10f..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/transform_exclusive_scan.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__numeric/transform_exclusive_scan.h> -// expected-error@-1 {{header '<__numeric/transform_exclusive_scan.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/transform_inclusive_scan.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/numeric/transform_inclusive_scan.header.verify.cpp deleted file mode 100644 index d2dbd1075323..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/transform_inclusive_scan.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__numeric/transform_inclusive_scan.h> -// expected-error@-1 {{header '<__numeric/transform_inclusive_scan.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/transform_reduce.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/numeric/transform_reduce.header.verify.cpp deleted file mode 100644 index c51f4f8d5e55..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/numeric/transform_reduce.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__numeric/transform_reduce.h> -// expected-error@-1 {{header '<__numeric/transform_reduce.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/bernoulli_distribution.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/bernoulli_distribution.header.verify.cpp deleted file mode 100644 index 5f752c6865b0..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/bernoulli_distribution.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/bernoulli_distribution.h> -// expected-error@-1 {{header '<__random/bernoulli_distribution.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/binomial_distribution.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/binomial_distribution.header.verify.cpp deleted file mode 100644 index 341c947ceece..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/binomial_distribution.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/binomial_distribution.h> -// expected-error@-1 {{header '<__random/binomial_distribution.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/cauchy_distribution.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/cauchy_distribution.header.verify.cpp deleted file mode 100644 index 6b5ca88a341b..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/cauchy_distribution.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/cauchy_distribution.h> -// expected-error@-1 {{header '<__random/cauchy_distribution.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/chi_squared_distribution.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/chi_squared_distribution.header.verify.cpp deleted file mode 100644 index 0bba97503c44..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/chi_squared_distribution.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/chi_squared_distribution.h> -// expected-error@-1 {{header '<__random/chi_squared_distribution.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/clamp_to_integral.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/clamp_to_integral.header.verify.cpp deleted file mode 100644 index 30404cbb39bd..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/clamp_to_integral.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/clamp_to_integral.h> -// expected-error@-1 {{header '<__random/clamp_to_integral.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/default_random_engine.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/default_random_engine.header.verify.cpp deleted file mode 100644 index a8ff1ac65d1b..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/default_random_engine.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/default_random_engine.h> -// expected-error@-1 {{header '<__random/default_random_engine.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/discard_block_engine.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/discard_block_engine.header.verify.cpp deleted file mode 100644 index 6cee35ef1ecb..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/discard_block_engine.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/discard_block_engine.h> -// expected-error@-1 {{header '<__random/discard_block_engine.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/discrete_distribution.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/discrete_distribution.header.verify.cpp deleted file mode 100644 index e50e0270fcaf..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/discrete_distribution.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/discrete_distribution.h> -// expected-error@-1 {{header '<__random/discrete_distribution.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/exponential_distribution.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/exponential_distribution.header.verify.cpp deleted file mode 100644 index f4d408226d78..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/exponential_distribution.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/exponential_distribution.h> -// expected-error@-1 {{header '<__random/exponential_distribution.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/extreme_value_distribution.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/extreme_value_distribution.header.verify.cpp deleted file mode 100644 index 37894b171092..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/extreme_value_distribution.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/extreme_value_distribution.h> -// expected-error@-1 {{header '<__random/extreme_value_distribution.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/fisher_f_distribution.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/fisher_f_distribution.header.verify.cpp deleted file mode 100644 index a5d0160729d9..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/fisher_f_distribution.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/fisher_f_distribution.h> -// expected-error@-1 {{header '<__random/fisher_f_distribution.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/gamma_distribution.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/gamma_distribution.header.verify.cpp deleted file mode 100644 index 1ef8fb117780..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/gamma_distribution.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/gamma_distribution.h> -// expected-error@-1 {{header '<__random/gamma_distribution.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/generate_canonical.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/generate_canonical.header.verify.cpp deleted file mode 100644 index 3fc47e9b0430..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/generate_canonical.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/generate_canonical.h> -// expected-error@-1 {{header '<__random/generate_canonical.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/geometric_distribution.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/geometric_distribution.header.verify.cpp deleted file mode 100644 index 04a80df515c8..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/geometric_distribution.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/geometric_distribution.h> -// expected-error@-1 {{header '<__random/geometric_distribution.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/independent_bits_engine.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/independent_bits_engine.header.verify.cpp deleted file mode 100644 index 1b24aa6ecbf4..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/independent_bits_engine.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/independent_bits_engine.h> -// expected-error@-1 {{header '<__random/independent_bits_engine.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/is_seed_sequence.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/is_seed_sequence.header.verify.cpp deleted file mode 100644 index 423e34b6d03e..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/is_seed_sequence.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/is_seed_sequence.h> -// expected-error@-1 {{header '<__random/is_seed_sequence.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/knuth_b.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/knuth_b.header.verify.cpp deleted file mode 100644 index b2bbc47a1246..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/knuth_b.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/knuth_b.h> -// expected-error@-1 {{header '<__random/knuth_b.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/linear_congruential_engine.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/linear_congruential_engine.header.verify.cpp deleted file mode 100644 index b9e670ebf4a7..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/linear_congruential_engine.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/linear_congruential_engine.h> -// expected-error@-1 {{header '<__random/linear_congruential_engine.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/log2.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/log2.header.verify.cpp deleted file mode 100644 index 7f200c95f2ba..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/log2.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/log2.h> -// expected-error@-1 {{header '<__random/log2.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/lognormal_distribution.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/lognormal_distribution.header.verify.cpp deleted file mode 100644 index 0d4198e767a7..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/lognormal_distribution.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/lognormal_distribution.h> -// expected-error@-1 {{header '<__random/lognormal_distribution.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/mersenne_twister_engine.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/mersenne_twister_engine.header.verify.cpp deleted file mode 100644 index 7afd84f1cfc2..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/mersenne_twister_engine.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/mersenne_twister_engine.h> -// expected-error@-1 {{header '<__random/mersenne_twister_engine.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/negative_binomial_distribution.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/negative_binomial_distribution.header.verify.cpp deleted file mode 100644 index 8fd2371d4aac..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/negative_binomial_distribution.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/negative_binomial_distribution.h> -// expected-error@-1 {{header '<__random/negative_binomial_distribution.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/normal_distribution.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/normal_distribution.header.verify.cpp deleted file mode 100644 index 048406392ff1..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/normal_distribution.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/normal_distribution.h> -// expected-error@-1 {{header '<__random/normal_distribution.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/piecewise_constant_distribution.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/piecewise_constant_distribution.header.verify.cpp deleted file mode 100644 index be34948dff14..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/piecewise_constant_distribution.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/piecewise_constant_distribution.h> -// expected-error@-1 {{header '<__random/piecewise_constant_distribution.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/piecewise_linear_distribution.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/piecewise_linear_distribution.header.verify.cpp deleted file mode 100644 index 7266fda624c0..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/piecewise_linear_distribution.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/piecewise_linear_distribution.h> -// expected-error@-1 {{header '<__random/piecewise_linear_distribution.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/poisson_distribution.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/poisson_distribution.header.verify.cpp deleted file mode 100644 index acf012981426..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/poisson_distribution.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/poisson_distribution.h> -// expected-error@-1 {{header '<__random/poisson_distribution.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/random_device.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/random_device.header.verify.cpp deleted file mode 100644 index 7bcbaaf8582b..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/random_device.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/random_device.h> -// expected-error@-1 {{header '<__random/random_device.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/ranlux.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/ranlux.header.verify.cpp deleted file mode 100644 index 8dd8f2b4feda..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/ranlux.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/ranlux.h> -// expected-error@-1 {{header '<__random/ranlux.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/seed_seq.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/seed_seq.header.verify.cpp deleted file mode 100644 index 100eaa8a1018..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/seed_seq.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/seed_seq.h> -// expected-error@-1 {{header '<__random/seed_seq.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/shuffle_order_engine.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/shuffle_order_engine.header.verify.cpp deleted file mode 100644 index 56237a48d6b9..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/shuffle_order_engine.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/shuffle_order_engine.h> -// expected-error@-1 {{header '<__random/shuffle_order_engine.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/student_t_distribution.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/student_t_distribution.header.verify.cpp deleted file mode 100644 index 045601af8af4..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/student_t_distribution.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/student_t_distribution.h> -// expected-error@-1 {{header '<__random/student_t_distribution.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/subtract_with_carry_engine.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/subtract_with_carry_engine.header.verify.cpp deleted file mode 100644 index 2044688d38db..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/subtract_with_carry_engine.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/subtract_with_carry_engine.h> -// expected-error@-1 {{header '<__random/subtract_with_carry_engine.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/uniform_int_distribution.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/uniform_int_distribution.header.verify.cpp deleted file mode 100644 index 93d16a5aac1e..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/uniform_int_distribution.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/uniform_int_distribution.h> -// expected-error@-1 {{header '<__random/uniform_int_distribution.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/uniform_random_bit_generator.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/uniform_random_bit_generator.header.verify.cpp deleted file mode 100644 index 3df804026d2c..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/uniform_random_bit_generator.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/uniform_random_bit_generator.h> -// expected-error@-1 {{header '<__random/uniform_random_bit_generator.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/uniform_real_distribution.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/uniform_real_distribution.header.verify.cpp deleted file mode 100644 index d05c78835f3e..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/uniform_real_distribution.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/uniform_real_distribution.h> -// expected-error@-1 {{header '<__random/uniform_real_distribution.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/random/weibull_distribution.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/random/weibull_distribution.header.verify.cpp deleted file mode 100644 index c6e3b7c2a1bb..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/random/weibull_distribution.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__random/weibull_distribution.h> -// expected-error@-1 {{header '<__random/weibull_distribution.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/access.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/access.header.verify.cpp deleted file mode 100644 index 8c72d6edb253..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/access.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/access.h> -// expected-error@-1 {{header '<__ranges/access.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/all.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/all.header.verify.cpp deleted file mode 100644 index a78144ed1707..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/all.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/all.h> -// expected-error@-1 {{header '<__ranges/all.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/common_view.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/common_view.header.verify.cpp deleted file mode 100644 index cc1eb93409ae..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/common_view.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/common_view.h> -// expected-error@-1 {{header '<__ranges/common_view.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/concepts.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/concepts.header.verify.cpp deleted file mode 100644 index d7f8e677dab9..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/concepts.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/concepts.h> -// expected-error@-1 {{header '<__ranges/concepts.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/copyable_box.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/copyable_box.header.verify.cpp deleted file mode 100644 index 4b92271ea105..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/copyable_box.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/copyable_box.h> -// expected-error@-1 {{header '<__ranges/copyable_box.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/counted.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/counted.header.verify.cpp deleted file mode 100644 index 4fa425e9b1e9..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/counted.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/counted.h> -// expected-error@-1 {{header '<__ranges/counted.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/dangling.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/dangling.header.verify.cpp deleted file mode 100644 index 16c222bb92c5..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/dangling.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/dangling.h> -// expected-error@-1 {{header '<__ranges/dangling.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/data.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/data.header.verify.cpp deleted file mode 100644 index 15f2a16d1a44..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/data.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/data.h> -// expected-error@-1 {{header '<__ranges/data.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/drop_view.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/drop_view.header.verify.cpp deleted file mode 100644 index edb7e12ced48..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/drop_view.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/drop_view.h> -// expected-error@-1 {{header '<__ranges/drop_view.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/empty.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/empty.header.verify.cpp deleted file mode 100644 index 2e4fc0ea8224..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/empty.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/empty.h> -// expected-error@-1 {{header '<__ranges/empty.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/empty_view.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/empty_view.header.verify.cpp deleted file mode 100644 index bf7992f3e1ed..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/empty_view.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/empty_view.h> -// expected-error@-1 {{header '<__ranges/empty_view.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/enable_borrowed_range.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/enable_borrowed_range.header.verify.cpp deleted file mode 100644 index adade7282123..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/enable_borrowed_range.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/enable_borrowed_range.h> -// expected-error@-1 {{header '<__ranges/enable_borrowed_range.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/enable_view.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/enable_view.header.verify.cpp deleted file mode 100644 index 3cfe1ab8e03f..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/enable_view.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/enable_view.h> -// expected-error@-1 {{header '<__ranges/enable_view.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/iota_view.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/iota_view.header.verify.cpp deleted file mode 100644 index dc1ac446c812..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/iota_view.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/iota_view.h> -// expected-error@-1 {{header '<__ranges/iota_view.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/join_view.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/join_view.header.verify.cpp deleted file mode 100644 index 6a996af4420a..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/join_view.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/join_view.h> -// expected-error@-1 {{header '<__ranges/join_view.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/non_propagating_cache.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/non_propagating_cache.header.verify.cpp deleted file mode 100644 index ca16f5208790..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/non_propagating_cache.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/non_propagating_cache.h> -// expected-error@-1 {{header '<__ranges/non_propagating_cache.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/owning_view.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/owning_view.header.verify.cpp deleted file mode 100644 index 194b42d2c366..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/owning_view.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/owning_view.h> -// expected-error@-1 {{header '<__ranges/owning_view.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/range_adaptor.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/range_adaptor.header.verify.cpp deleted file mode 100644 index 67d88f0ec99c..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/range_adaptor.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/range_adaptor.h> -// expected-error@-1 {{header '<__ranges/range_adaptor.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/rbegin.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/rbegin.header.verify.cpp deleted file mode 100644 index 95ec5a712c42..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/rbegin.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/rbegin.h> -// expected-error@-1 {{header '<__ranges/rbegin.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/ref_view.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/ref_view.header.verify.cpp deleted file mode 100644 index e40eff54c1b0..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/ref_view.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/ref_view.h> -// expected-error@-1 {{header '<__ranges/ref_view.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/rend.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/rend.header.verify.cpp deleted file mode 100644 index 28d575ac41c5..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/rend.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/rend.h> -// expected-error@-1 {{header '<__ranges/rend.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/reverse_view.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/reverse_view.header.verify.cpp deleted file mode 100644 index a7f65a7e5a97..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/reverse_view.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/reverse_view.h> -// expected-error@-1 {{header '<__ranges/reverse_view.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/single_view.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/single_view.header.verify.cpp deleted file mode 100644 index 4f96e162113f..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/single_view.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/single_view.h> -// expected-error@-1 {{header '<__ranges/single_view.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/size.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/size.header.verify.cpp deleted file mode 100644 index ff62dd88842d..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/size.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/size.h> -// expected-error@-1 {{header '<__ranges/size.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/subrange.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/subrange.header.verify.cpp deleted file mode 100644 index 5ade94b47e82..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/subrange.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/subrange.h> -// expected-error@-1 {{header '<__ranges/subrange.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/take_view.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/take_view.header.verify.cpp deleted file mode 100644 index 7933661bf2dc..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/take_view.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/take_view.h> -// expected-error@-1 {{header '<__ranges/take_view.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/transform_view.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/transform_view.header.verify.cpp deleted file mode 100644 index e70110f92046..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/transform_view.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/transform_view.h> -// expected-error@-1 {{header '<__ranges/transform_view.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/view_interface.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/view_interface.header.verify.cpp deleted file mode 100644 index f515614cc76f..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/view_interface.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/view_interface.h> -// expected-error@-1 {{header '<__ranges/view_interface.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/views.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/ranges/views.header.verify.cpp deleted file mode 100644 index 60ee669c7024..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/ranges/views.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__ranges/views.h> -// expected-error@-1 {{header '<__ranges/views.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/split_buffer.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/split_buffer.header.verify.cpp deleted file mode 100644 index 60c8319fc308..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/split_buffer.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__split_buffer> -// expected-error@-1 {{header '<__split_buffer>' is an implementation detail; #include either '' or '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/std_stream.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/std_stream.header.verify.cpp deleted file mode 100644 index f2c1da3ce502..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/std_stream.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__std_stream> -// expected-error@-1 {{header '<__std_stream>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/string.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/string.header.verify.cpp deleted file mode 100644 index 30f1fb47b6e1..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/string.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__string> -// expected-error@-1 {{header '<__string>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/thread/poll_with_backoff.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/thread/poll_with_backoff.header.verify.cpp deleted file mode 100644 index 63c78eaa38e7..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/thread/poll_with_backoff.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__thread/poll_with_backoff.h> -// expected-error@-1 {{header '<__thread/poll_with_backoff.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/thread/timed_backoff_policy.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/thread/timed_backoff_policy.header.verify.cpp deleted file mode 100644 index 182edf2ed665..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/thread/timed_backoff_policy.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__thread/timed_backoff_policy.h> -// expected-error@-1 {{header '<__thread/timed_backoff_policy.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/tuple.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/tuple.header.verify.cpp deleted file mode 100644 index 215ff6ec0faa..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/tuple.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__tuple> -// expected-error@-1 {{header '<__tuple>' is an implementation detail; #include either '' or '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/utility/as_const.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/utility/as_const.header.verify.cpp deleted file mode 100644 index 283bdf561e0b..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/utility/as_const.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__utility/as_const.h> -// expected-error@-1 {{header '<__utility/as_const.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/utility/auto_cast.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/utility/auto_cast.header.verify.cpp deleted file mode 100644 index 5620a9a782ac..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/utility/auto_cast.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__utility/auto_cast.h> -// expected-error@-1 {{header '<__utility/auto_cast.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/utility/cmp.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/utility/cmp.header.verify.cpp deleted file mode 100644 index 5509436115d1..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/utility/cmp.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__utility/cmp.h> -// expected-error@-1 {{header '<__utility/cmp.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/utility/declval.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/utility/declval.header.verify.cpp deleted file mode 100644 index 249e973b2010..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/utility/declval.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__utility/declval.h> -// expected-error@-1 {{header '<__utility/declval.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/utility/exchange.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/utility/exchange.header.verify.cpp deleted file mode 100644 index bde39c2855b4..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/utility/exchange.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__utility/exchange.h> -// expected-error@-1 {{header '<__utility/exchange.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/utility/forward.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/utility/forward.header.verify.cpp deleted file mode 100644 index 0df29f16dd63..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/utility/forward.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__utility/forward.h> -// expected-error@-1 {{header '<__utility/forward.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/utility/in_place.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/utility/in_place.header.verify.cpp deleted file mode 100644 index 04a2023352b1..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/utility/in_place.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__utility/in_place.h> -// expected-error@-1 {{header '<__utility/in_place.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/utility/integer_sequence.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/utility/integer_sequence.header.verify.cpp deleted file mode 100644 index 98af96aa12a2..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/utility/integer_sequence.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__utility/integer_sequence.h> -// expected-error@-1 {{header '<__utility/integer_sequence.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/utility/move.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/utility/move.header.verify.cpp deleted file mode 100644 index e444233ad9e0..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/utility/move.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__utility/move.h> -// expected-error@-1 {{header '<__utility/move.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/utility/pair.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/utility/pair.header.verify.cpp deleted file mode 100644 index 686eb5a3c9fc..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/utility/pair.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__utility/pair.h> -// expected-error@-1 {{header '<__utility/pair.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/utility/piecewise_construct.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/utility/piecewise_construct.header.verify.cpp deleted file mode 100644 index e10484b8a7ec..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/utility/piecewise_construct.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__utility/piecewise_construct.h> -// expected-error@-1 {{header '<__utility/piecewise_construct.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/utility/priority_tag.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/utility/priority_tag.header.verify.cpp deleted file mode 100644 index 444c548b4f5e..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/utility/priority_tag.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__utility/priority_tag.h> -// expected-error@-1 {{header '<__utility/priority_tag.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/utility/rel_ops.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/utility/rel_ops.header.verify.cpp deleted file mode 100644 index ce60351cf7d7..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/utility/rel_ops.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__utility/rel_ops.h> -// expected-error@-1 {{header '<__utility/rel_ops.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/utility/swap.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/utility/swap.header.verify.cpp deleted file mode 100644 index 0067fe1041cf..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/utility/swap.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__utility/swap.h> -// expected-error@-1 {{header '<__utility/swap.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/utility/to_underlying.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/utility/to_underlying.header.verify.cpp deleted file mode 100644 index 451f9cd7d491..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/utility/to_underlying.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__utility/to_underlying.h> -// expected-error@-1 {{header '<__utility/to_underlying.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/utility/transaction.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/utility/transaction.header.verify.cpp deleted file mode 100644 index 7e5a84ea011a..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/utility/transaction.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__utility/transaction.h> -// expected-error@-1 {{header '<__utility/transaction.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/utility/unreachable.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/utility/unreachable.header.verify.cpp deleted file mode 100644 index bc31bde4d9af..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/utility/unreachable.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__utility/unreachable.h> -// expected-error@-1 {{header '<__utility/unreachable.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/variant/monostate.header.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/variant/monostate.header.verify.cpp deleted file mode 100644 index 3fbf9e167165..000000000000 --- a/libcxx/test/libcxx/diagnostics/detail.headers/variant/monostate.header.verify.cpp +++ /dev/null @@ -1,20 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by 'generate_private_header_tests.py' -// and should not be edited manually. - -#include <__variant/monostate.h> -// expected-error@-1 {{header '<__variant/monostate.h>' is an implementation detail; #include '' instead}} diff --git a/libcxx/test/libcxx/lint/lint_headers.sh.py b/libcxx/test/libcxx/lint/lint_headers.sh.py index 5f3f128c02b7..94adac3b163e 100644 --- a/libcxx/test/libcxx/lint/lint_headers.sh.py +++ b/libcxx/test/libcxx/lint/lint_headers.sh.py @@ -26,26 +26,6 @@ def check_for_pragma_GCC_system_header(pretty_fname, lines): return False return True -def check_for_pragma_clang_include_instead(pretty_fname, lines): - expect_include_instead = pretty_fname.startswith('__') and pretty_fname not in [ - '__assert', - '__bsd_locale_fallbacks.h', - '__bsd_locale_defaults.h', - '__availability', - '__debug', - '__errc', - '__mbstate_t.h', - '__undef_macros', - ] - found_include_instead = any(line.startswith('# pragma clang include_instead') for line in lines) - if expect_include_instead and not found_include_instead: - print('FAILED TO FIND # pragma clang include_instead in libcxx/include/%s!' % pretty_fname) - return False - elif found_include_instead and not expect_include_instead: - print('UNEXPECTEDLY FOUND # pragma clang include_instead in libcxx/include/%s!' % pretty_fname) - return False - return True - if __name__ == '__main__': libcxx_test_libcxx_lint = os.path.dirname(os.path.abspath(__file__)) @@ -69,6 +49,5 @@ if __name__ == '__main__': lines = f.readlines() okay = check_for_pragma_GCC_system_header(pretty_fname, lines) and okay - okay = check_for_pragma_clang_include_instead(pretty_fname, lines) and okay assert okay diff --git a/libcxx/utils/generate_private_header_tests.py b/libcxx/utils/generate_private_header_tests.py index 075dcfcabc1c..810657ea4f41 100755 --- a/libcxx/utils/generate_private_header_tests.py +++ b/libcxx/utils/generate_private_header_tests.py @@ -25,32 +25,7 @@ def get_libcxx_paths(): script_name, include_path, detail_header_test_root = get_libcxx_paths() -def generate_header_test(header, include_instead): - return f''' -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// - -// UNSUPPORTED: modules-build -// UNSUPPORTED: clang-11, clang-12, clang-13 -// UNSUPPORTED: apple-clang-11, apple-clang-12, apple-clang-13 -// UNSUPPORTED: gcc-11 -// UNSUPPORTED: libcpp-has-no-localization, libcpp-has-no-threads -// ADDITIONAL_COMPILE_FLAGS: -U_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER - -// WARNING: This test was generated by '{script_name}' -// and should not be edited manually. - -#include <{header}> -// expected-error@-1 {{{{header '<{header}>' is an implementation detail; #include {include_instead} instead}}}} -'''[1:] - - -def generate_module_test(header): +def generate_test(header): return f''' //===----------------------------------------------------------------------===// // @@ -83,35 +58,6 @@ def is_still_public(path): ] -def find_header_name(header, directory): - """Returns part of the diagnostic for `#pragma clang include_instead`. This - usually matches the subdirectory the header lives in (e.g. a header in - `__algorithm` will return "''"), but some headers are - special-cased. - """ - - # Most of the special-cased headers are in the top-level include directory - # (and don't have a point of reference for us to hook on to), but any - # sub-level header that is exported by multiple top-level headers (e.g. - # __compare/compare_three_way.h) is also included in this module map, as the - # diagnostic needs to include more than our simple heuristic. - header_map = { - 'bit_reference': "either '' or ''", - 'bits': "one of {'', '', '', '', '', '', '', ''}", - 'hash_table': "either '' or ''", - 'locale': "''", - 'mutex_base': "either '' or ''", - 'node_handle': "one of {'', '', '', ''}", - 'split_buffer': "either '' or ''", - 'std_stream': "''", - 'string': "''", - 'threading_support': "one of {'', '', '', ''}", - 'tree': "either '' or ''", - 'tuple': "either '' or ''", - } - return header_map[header] if header in header_map else f"'<{directory[:-1]}>'" - - def main(): paths = [ relative_path(p) for p in Path(include_path).rglob('*') @@ -122,18 +68,11 @@ def main(): path_with_subdir = re.search(r'__(\w+)/(\w+)', path) directory = path_with_subdir.group(1) + '/' if path_with_subdir else "" file = path_with_subdir.group(2) if path_with_subdir else path[2:] + path_to_write = f'{detail_header_test_root}/{directory}{file}.module.verify.cpp' Path(f'{detail_header_test_root}/{directory}').mkdir(exist_ok=True) assert os.path.exists(f'{detail_header_test_root}/{directory}') - - path_to_write = f'{detail_header_test_root}/{directory}{file}.header.verify.cpp' - include_instead = find_header_name(file, directory) - if include_instead != "'<>'": - with open(path_to_write, 'w') as f: - f.write(generate_header_test(path, include_instead)) - - path_to_write = f'{detail_header_test_root}/{directory}{file}.module.verify.cpp' with open(path_to_write, 'w') as f: - f.write(generate_module_test(path)) + f.write(generate_test(path)) if __name__ == '__main__': diff --git a/libcxxabi/include/threading_support.h b/libcxxabi/include/threading_support.h deleted file mode 100644 index 3e533f91ee7f..000000000000 --- a/libcxxabi/include/threading_support.h +++ /dev/null @@ -1,14 +0,0 @@ -//===----------------------------------------------------------------------===// -// -// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. -// See https://llvm.org/LICENSE.txt for license information. -// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception -// -//===----------------------------------------------------------------------===// -#ifndef _LIBCXXABI_THREADING_SUPPORT_H -#define _LIBCXXABI_THREADING_SUPPORT_H - -#pragma GCC system_header -#include <__threading_support> - -#endif // _LIBCXXABI_THREADING_SUPPORT_H diff --git a/libcxxabi/src/cxa_exception_storage.cpp b/libcxxabi/src/cxa_exception_storage.cpp index ce44c3a176a4..3a3233a1b927 100644 --- a/libcxxabi/src/cxa_exception_storage.cpp +++ b/libcxxabi/src/cxa_exception_storage.cpp @@ -12,7 +12,7 @@ #include "cxa_exception.h" -#include "threading_support.h" +#include <__threading_support> #if defined(_LIBCXXABI_HAS_NO_THREADS) diff --git a/libcxxabi/src/cxa_guard_impl.h b/libcxxabi/src/cxa_guard_impl.h index b3c32028dc5a..72940cc7e869 100644 --- a/libcxxabi/src/cxa_guard_impl.h +++ b/libcxxabi/src/cxa_guard_impl.h @@ -56,7 +56,7 @@ #include #include -#include "threading_support.h" +#include <__threading_support> #ifndef _LIBCXXABI_HAS_NO_THREADS # if defined(__ELF__) && defined(_LIBCXXABI_LINK_PTHREAD_LIB) # pragma comment(lib, "pthread") diff --git a/libcxxabi/src/cxa_thread_atexit.cpp b/libcxxabi/src/cxa_thread_atexit.cpp index 1a04dddb34be..665f9e55694a 100644 --- a/libcxxabi/src/cxa_thread_atexit.cpp +++ b/libcxxabi/src/cxa_thread_atexit.cpp @@ -8,7 +8,7 @@ #include "abort_message.h" #include "cxxabi.h" -#include "threading_support.h" +#include <__threading_support> #ifndef _LIBCXXABI_HAS_NO_THREADS #if defined(__ELF__) && defined(_LIBCXXABI_LINK_PTHREAD_LIB) #pragma comment(lib, "pthread") diff --git a/libcxxabi/src/fallback_malloc.cpp b/libcxxabi/src/fallback_malloc.cpp index 9db431ee8297..1d6c3808b217 100644 --- a/libcxxabi/src/fallback_malloc.cpp +++ b/libcxxabi/src/fallback_malloc.cpp @@ -8,7 +8,7 @@ #include "fallback_malloc.h" -#include "threading_support.h" +#include <__threading_support> #ifndef _LIBCXXABI_HAS_NO_THREADS #if defined(__ELF__) && defined(_LIBCXXABI_LINK_PTHREAD_LIB) #pragma comment(lib, "pthread") diff --git a/libcxxabi/test/test_exception_storage.pass.cpp b/libcxxabi/test/test_exception_storage.pass.cpp index 4f1121bc7f39..934cc4b6a7cb 100644 --- a/libcxxabi/test/test_exception_storage.pass.cpp +++ b/libcxxabi/test/test_exception_storage.pass.cpp @@ -9,7 +9,7 @@ #include #include #include -#include "threading_support.h" +#include <__threading_support> #include #include "../src/cxa_exception.h" diff --git a/libcxxabi/test/test_fallback_malloc.pass.cpp b/libcxxabi/test/test_fallback_malloc.pass.cpp index 886b9a5f895a..cc59129bf660 100644 --- a/libcxxabi/test/test_fallback_malloc.pass.cpp +++ b/libcxxabi/test/test_fallback_malloc.pass.cpp @@ -9,7 +9,7 @@ #include #include -#include "threading_support.h" +#include <__threading_support> typedef std::deque container;