| 473 | |
| 474 | template <class T> |
| 475 | void PersistentBase<T>::Reset() { |
| 476 | if (this->IsEmpty()) return; |
| 477 | api_internal::DisposeGlobal(reinterpret_cast<internal::Address*>(this->val_)); |
| 478 | val_ = nullptr; |
| 479 | } |
| 480 | |
| 481 | /** |
| 482 | * If non-empty, destroy the underlying storage cell |
no test coverage detected