| 170 | } |
| 171 | |
| 172 | static int CALLBACK _Base_HasOneRef(cef_base_ref_counted_t *_) noexcept { |
| 173 | return reinterpret_cast<CefRefCount *>(_)->ref_ == 1; |
| 174 | } |
| 175 | |
| 176 | static int CALLBACK _Base_HasAtLeastOneRef(cef_base_ref_counted_t *_) noexcept { |
| 177 | return reinterpret_cast<CefRefCount *>(_)->ref_ > 0; |
nothing calls this directly
no outgoing calls
no test coverage detected