Returns the current reference count. */
| 42 | |
| 43 | /** Returns the current reference count. */ |
| 44 | int RefCount() const noexcept { |
| 45 | return ref_.load(std::memory_order_relaxed); |
| 46 | } |
| 47 | |
| 48 | virtual ~RefCountedObject() = default; |
| 49 |
no test coverage detected