| 49 | : handle_(std::move(handle)), parent_(parent) {} |
| 50 | |
| 51 | GlobalData::~GlobalData() { |
| 52 | if (parent_ != nullptr) { |
| 53 | ReleaseHandles(parent_, {handle_}); |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | /* static */ void GlobalData::Release( |
| 58 | std::vector<std::unique_ptr<GlobalData>> instances) { |
nothing calls this directly
no test coverage detected