| 85 | class [[nodiscard]] DbgHelpQuery { |
| 86 | public: |
| 87 | DbgHelpQuery() noexcept : lock() { |
| 88 | if (DbgHelpState::refCount == 0) { |
| 89 | ownsRef = acquireDbgHelpRef(); |
| 90 | } else { |
| 91 | initialized = true; |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | ~DbgHelpQuery() { |
| 96 | if (ownsRef) { |
nothing calls this directly
no test coverage detected