| 432 | namespace common_internal { |
| 433 | |
| 434 | inline const ReferenceCount* absl_nullable BorrowerRelease( |
| 435 | Borrower borrower) noexcept { |
| 436 | uintptr_t ptr = borrower.ptr_; |
| 437 | if (Owner::IsReferenceCount(ptr)) { |
| 438 | return Owner::AsReferenceCount(ptr); |
| 439 | } |
| 440 | return nullptr; |
| 441 | } |
| 442 | |
| 443 | } // namespace common_internal |
| 444 |
nothing calls this directly
no test coverage detected