File tree Expand file tree Collapse file tree 6 files changed +14
-6
lines changed Expand file tree Collapse file tree 6 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 26
26
#if _LIBCPP_STD_VER >= 20
27
27
28
28
using __standard_header_ccomplex _LIBCPP_DEPRECATED_ (" removed in C++20. Include <complex> instead." ) = void;
29
+ // NOLINTNEXTLINE(clang-diagnostic-deprecated-declarations)
29
30
using __use_standard_header_ccomplex = __standard_header_ccomplex;
30
31
31
32
#elif _LIBCPP_STD_VER >= 17
32
33
33
34
using __standard_header_ccomplex _LIBCPP_DEPRECATED_ (" Include <complex> instead." ) = void;
34
- using __use_standard_header_ccomplex = __standard_header_ccomplex;
35
+ // NOLINTNEXTLINE(clang-diagnostic-deprecated-declarations)
36
+ using __use_standard_header_ccomplex = __standard_header_ccomplex;
35
37
36
38
#endif
37
39
Original file line number Diff line number Diff line change @@ -998,7 +998,6 @@ constexpr chrono::year operator ""y(unsigned lo
998
998
# include < cstdint>
999
999
# include < stdexcept>
1000
1000
# include < string_view>
1001
- # include < vector>
1002
1001
#endif
1003
1002
1004
1003
#if !defined(_LIBCPP_REMOVE_TRANSITIVE_INCLUDES) && _LIBCPP_STD_VER <= 20
Original file line number Diff line number Diff line change 24
24
#if _LIBCPP_STD_VER >= 20
25
25
26
26
using __standard_header_ciso646 _LIBCPP_DEPRECATED_ (" removed in C++20. Include <version> instead." ) = void;
27
+ // NOLINTNEXTLINE(clang-diagnostic-deprecated-declarations)
27
28
using __use_standard_header_ciso646 = __standard_header_ciso646;
28
29
29
30
#endif
Original file line number Diff line number Diff line change @@ -43,12 +43,14 @@ Macros:
43
43
#if _LIBCPP_STD_VER >= 20
44
44
45
45
using __standard_header_cstdalign _LIBCPP_DEPRECATED_ (" removed in C++20." ) = void;
46
- using __use_standard_header_cstdalign = __standard_header_cstdalign;
46
+ // NOLINTNEXTLINE(clang-diagnostic-deprecated-declarations)
47
+ using __use_standard_header_cstdalign = __standard_header_cstdalign;
47
48
48
49
#elif _LIBCPP_STD_VER >= 17
49
50
50
51
using __standard_header_cstdalign _LIBCPP_DEPRECATED = void ;
51
- using __use_standard_header_cstdalign = __standard_header_cstdalign;
52
+ // NOLINTNEXTLINE(clang-diagnostic-deprecated-declarations)
53
+ using __use_standard_header_cstdalign = __standard_header_cstdalign;
52
54
53
55
#endif
54
56
Original file line number Diff line number Diff line change @@ -31,12 +31,14 @@ Macros:
31
31
#if _LIBCPP_STD_VER >= 20
32
32
33
33
using __standard_header_cstdbool _LIBCPP_DEPRECATED_ (" removed in C++20." ) = void;
34
- using __use_standard_header_cstdbool = __standard_header_cstdbool;
34
+ // NOLINTNEXTLINE(clang-diagnostic-deprecated-declarations)
35
+ using __use_standard_header_cstdbool = __standard_header_cstdbool;
35
36
36
37
#elif _LIBCPP_STD_VER >= 17
37
38
38
39
using __standard_header_cstdbool _LIBCPP_DEPRECATED = void ;
39
- using __use_standard_header_cstdbool = __standard_header_cstdbool;
40
+ // NOLINTNEXTLINE(clang-diagnostic-deprecated-declarations)
41
+ using __use_standard_header_cstdbool = __standard_header_cstdbool;
40
42
41
43
#endif
42
44
Original file line number Diff line number Diff line change 28
28
#if _LIBCPP_STD_VER >= 20
29
29
30
30
using __standard_header_ctgmath _LIBCPP_DEPRECATED_ (" removed in C++20. Include <cmath> and <complex> instead." ) = void;
31
+ // NOLINTNEXTLINE(clang-diagnostic-deprecated-declarations)
31
32
using __use_standard_header_ctgmath = __standard_header_ctgmath;
32
33
33
34
#elif _LIBCPP_STD_VER >= 17
34
35
35
36
using __standard_header_ctgmath _LIBCPP_DEPRECATED_ (" Include <cmath> and <complex> instead." ) = void;
37
+ // NOLINTNEXTLINE(clang-diagnostic-deprecated-declarations)
36
38
using __use_standard_header_ctgmath = __standard_header_ctgmath;
37
39
38
40
#endif
You can’t perform that action at this time.
0 commit comments