Skip to content

Commit eea9049

Browse files
committed
[libc++] Improve deprecated diagnostic guards.
Recent Clang-21 builds improved the deprecated diagnotics. This uncovered missing guards in libc++ internally. Note: This patch should be a separate commit and not merged. For testing purposes they are combined.
1 parent 90319c1 commit eea9049

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

libcxx/include/__functional/binary_function.h

+2-3
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,10 @@ struct __binary_function_keep_layout_base {
3939
};
4040

4141
#if _LIBCPP_STD_VER <= 14 || defined(_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION)
42-
_LIBCPP_DIAGNOSTIC_PUSH
43-
_LIBCPP_CLANG_DIAGNOSTIC_IGNORED("-Wdeprecated-declarations")
42+
_LIBCPP_SUPPRESS_DEPRECATED_PUSH
4443
template <class _Arg1, class _Arg2, class _Result>
4544
using __binary_function _LIBCPP_NODEBUG = binary_function<_Arg1, _Arg2, _Result>;
46-
_LIBCPP_DIAGNOSTIC_POP
45+
_LIBCPP_SUPPRESS_DEPRECATED_POP
4746
#else
4847
template <class _Arg1, class _Arg2, class _Result>
4948
using __binary_function _LIBCPP_NODEBUG = __binary_function_keep_layout_base<_Arg1, _Arg2, _Result>;

libcxx/include/__functional/unary_function.h

+2-3
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,10 @@ struct __unary_function_keep_layout_base {
3636
};
3737

3838
#if _LIBCPP_STD_VER <= 14 || defined(_LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION)
39-
_LIBCPP_DIAGNOSTIC_PUSH
40-
_LIBCPP_CLANG_DIAGNOSTIC_IGNORED("-Wdeprecated-declarations")
39+
_LIBCPP_SUPPRESS_DEPRECATED_PUSH
4140
template <class _Arg, class _Result>
4241
using __unary_function _LIBCPP_NODEBUG = unary_function<_Arg, _Result>;
43-
_LIBCPP_DIAGNOSTIC_POP
42+
_LIBCPP_SUPPRESS_DEPRECATED_POP
4443
#else
4544
template <class _Arg, class _Result>
4645
using __unary_function _LIBCPP_NODEBUG = __unary_function_keep_layout_base<_Arg, _Result>;

libcxx/include/__functional/weak_result_type.h

+2
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ struct __maybe_derive_from_unary_function // bool is true
7777
template <class _Tp>
7878
struct __maybe_derive_from_unary_function<_Tp, false> {};
7979

80+
_LIBCPP_SUPPRESS_DEPRECATED_PUSH
8081
template <class _Tp, bool = __derives_from_binary_function<_Tp>::value>
8182
struct __maybe_derive_from_binary_function // bool is true
8283
: public __derives_from_binary_function<_Tp>::type {};
@@ -99,6 +100,7 @@ struct __weak_result_type_imp<_Tp, false>
99100

100101
template <class _Tp>
101102
struct __weak_result_type : public __weak_result_type_imp<_Tp> {};
103+
_LIBCPP_SUPPRESS_DEPRECATED_POP
102104

103105
// 0 argument case
104106

libcxx/include/__memory/allocator_traits.h

+2
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ _LIBCPP_BEGIN_NAMESPACE_STD
4242
template <class _Tp> \
4343
struct NAME<_Tp, __void_t<typename _Tp::PROPERTY > > : true_type {}
4444

45+
_LIBCPP_SUPPRESS_DEPRECATED_PUSH
4546
// __pointer
4647
template <class _Tp>
4748
using __pointer_member _LIBCPP_NODEBUG = typename _Tp::pointer;
@@ -63,6 +64,7 @@ struct __const_pointer<_Tp, _Ptr, _Alloc, false> {
6364
using type _LIBCPP_NODEBUG = typename pointer_traits<_Ptr>::template rebind<const _Tp>;
6465
#endif
6566
};
67+
_LIBCPP_SUPPRESS_DEPRECATED_POP
6668

6769
// __void_pointer
6870
_LIBCPP_ALLOCATOR_TRAITS_HAS_XXX(__has_void_pointer, void_pointer);

libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/types.pass.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
// UNSUPPORTED: c++03
1010

11+
// ADDITIONAL_COMPILE_FLAGS: -D_LIBCPP_DISABLE_DEPRECATION_WARNINGS
12+
//
1113
// <functional>
1214

1315
// template<Returnable R, CopyConstructible... ArgTypes>

0 commit comments

Comments
 (0)