| 107 | operator size_t() const = delete; |
| 108 | |
| 109 | template <typename OtherType> static auto getPointer (ObjectPointer<OtherType> o) noexcept { return o.pointer; } |
| 110 | template <typename OtherType> static auto getPointer (const OtherType* o) noexcept { return o; } |
| 111 | template <typename OtherType> static auto getPointer (const OtherType& o) noexcept { return std::addressof (o); } |
| 112 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected