| 42 | template <typename T, typename = void> |
| 43 | struct PointerTraitsToAddress { |
| 44 | static constexpr auto Dispatch( |
| 45 | const T& p ABSL_ATTRIBUTE_LIFETIME_BOUND) noexcept { |
| 46 | return internal::to_address(p.operator->()); |
| 47 | } |
| 48 | }; |
| 49 | |
| 50 | template <typename T> |
nothing calls this directly
no test coverage detected