From f8adf4d264e22d8aff4551db8f863ed3377ed499 Mon Sep 17 00:00:00 2001 From: Petr Mironychev <9195189+Palm1r@users.noreply.github.com> Date: Thu, 28 May 2026 17:58:33 +0200 Subject: [PATCH] fix: Clean request id by clear() --- QuickRefactorHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QuickRefactorHandler.cpp b/QuickRefactorHandler.cpp index fe70e45..ec21bb2 100644 --- a/QuickRefactorHandler.cpp +++ b/QuickRefactorHandler.cpp @@ -390,7 +390,7 @@ void QuickRefactorHandler::cancelRequest() const auto id = m_lastRequestId; m_isRefactoringInProgress = false; - m_lastRequestId = {}; + m_lastRequestId.clear(); auto it = m_activeRequests.find(id); if (it != m_activeRequests.end()) {