| 320 | |
| 321 | template <class _Ty, std::size_t _ReservedBits> |
| 322 | constexpr auto __enable_intrusive_from_this<_Ty, _ReservedBits>::__dec_ref() noexcept |
| 323 | -> __ptr::__bits_t<_ReservedBits> |
| 324 | { |
| 325 | auto* __data = reinterpret_cast<__control_block<_Ty, _ReservedBits>*>( |
| 326 | &__c_downcast<_Ty>(*this)); |
| 327 | return __data->__dec_ref_(); |
| 328 | } |
| 329 | |
| 330 | template <class _Ty, std::size_t _ReservedBits> |
| 331 | template <std::size_t _Bit> |
nothing calls this directly
no test coverage detected