| 157 | std::atomic<size_t> ref_; |
| 158 | |
| 159 | static void CALLBACK _Base_AddRef(cef_base_ref_counted_t *_) noexcept { |
| 160 | ++reinterpret_cast<CefRefCount *>(_)->ref_; |
| 161 | } |
| 162 | |
| 163 | static int CALLBACK _Base_Release(cef_base_ref_counted_t *_) noexcept { |
| 164 | CefRefCount *self = reinterpret_cast<CefRefCount *>(_); |
nothing calls this directly
no outgoing calls
no test coverage detected