From c0716868794c70bd97be98e54b7c22c4980fd5cc Mon Sep 17 00:00:00 2001 From: Karthik Nadig Date: Thu, 10 Sep 2020 12:41:40 -0700 Subject: [PATCH] Update src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/run_code_on_dllmain.cpp --- .../pydevd_attach_to_process/windows/run_code_on_dllmain.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/run_code_on_dllmain.cpp b/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/run_code_on_dllmain.cpp index 54bbc8aa..fcf7354e 100644 --- a/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/run_code_on_dllmain.cpp +++ b/src/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/run_code_on_dllmain.cpp @@ -16,7 +16,7 @@ class NotificationHelper { public: #pragma warning( push ) #pragma warning( disable : 4722 ) -// disable c4722 here: Destructor newver returns warning. Compiler sees ExitThread and assumes that +// disable c4722 here: Destructor never returns warning. Compiler sees ExitThread and assumes that // there is a potential memory leak. ~NotificationHelper(){ std::string eventName("_pydevd_pid_event_"); @@ -75,4 +75,4 @@ BOOL WINAPI DllMain( else if(fdwReason == DLL_PROCESS_DETACH){ } return true; -} \ No newline at end of file +}