| 514 | TYPE* ptr = nullptr; |
| 515 | |
| 516 | explicit reference(TYPE* _ptr) noexcept |
| 517 | : ptr(_ptr) |
| 518 | { |
| 519 | } |
| 520 | |
| 521 | reference(const reference&) noexcept = default; |
| 522 | reference(reference&&) noexcept = default; |
nothing calls this directly
no outgoing calls
no test coverage detected