Drop unused variable in DisableAllBreakpointsAndSteppersInAppDomain()
authorAndrey Okoshkin <a.okoshkin@samsung.com>
Fri, 9 Feb 2018 16:05:11 +0000 (19:05 +0300)
committerAndrey Okoshkin <a.okoshkin@samsung.com>
Fri, 23 Mar 2018 13:49:18 +0000 (16:49 +0300)
src/debug/netcoredbg/manageddebugger.cpp

index 527dfe0..ad5cc51 100644 (file)
@@ -123,8 +123,6 @@ HRESULT ManagedDebugger::DisableAllSteppers(ICorDebugProcess *pProcess)
 
 static HRESULT DisableAllBreakpointsAndSteppersInAppDomain(ICorDebugAppDomain *pAppDomain)
 {
-    HRESULT Status;
-
     ToRelease<ICorDebugBreakpointEnum> breakpoints;
     if (SUCCEEDED(pAppDomain->EnumerateBreakpoints(&breakpoints)))
     {