| 133 | class ScopedThreadContext { |
| 134 | public: |
| 135 | ~ScopedThreadContext() { |
| 136 | thread_debug_info_->SetQueryId(ThreadDebugInfo::ZERO_THREAD_ID); |
| 137 | thread_debug_info_->SetInstanceId(ThreadDebugInfo::ZERO_THREAD_ID); |
| 138 | } |
| 139 | ScopedThreadContext(ThreadDebugInfo* thread_debug_info, const TUniqueId& query_id, |
| 140 | const TUniqueId& instance_id = ThreadDebugInfo::ZERO_THREAD_ID) { |
| 141 | thread_debug_info_ = thread_debug_info; |
nothing calls this directly
no test coverage detected