! * \return get the pointer content. */
| 192 | * \return get the pointer content. |
| 193 | */ |
| 194 | inline T* get() const { |
| 195 | if (block_ == nullptr) return nullptr; |
| 196 | return reinterpret_cast<T*>(&(block_->data)); |
| 197 | } |
| 198 | /*! |
| 199 | * \brief reset the pointer to nullptr. |
| 200 | */ |
nothing calls this directly
no outgoing calls
no test coverage detected