Whether the allocator is shared. ! \return true or false. */
| 358 | /*! \return true or false. |
| 359 | */ |
| 360 | bool Shared() const noexcept { |
| 361 | sonic_assert(shared_->refcount > 0); |
| 362 | return shared_->refcount > 1; |
| 363 | } |
| 364 | |
| 365 | //! Allocates a memory block. (concept Allocator) |
| 366 | void* Malloc(size_t size) { |
nothing calls this directly
no outgoing calls
no test coverage detected