From 048dcb91d5835ea13dff3de8ee350fa01b58f6ed Mon Sep 17 00:00:00 2001 From: Arnaud Kleinpeter Date: Fri, 8 Nov 2024 13:35:00 +0100 Subject: [PATCH] Update gtest.cc broken link to SEH exceptions --- googletest/src/gtest.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/googletest/src/gtest.cc b/googletest/src/gtest.cc index c08ab419..ef18ef02 100644 --- a/googletest/src/gtest.cc +++ b/googletest/src/gtest.cc @@ -905,7 +905,7 @@ int UnitTestOptions::GTestProcessSEH(DWORD seh_code, const char* location) { // apparently). // // SEH exception code for C++ exceptions. - // (see https://support.microsoft.com/kb/185294 for more information). + // (see https://learn.microsoft.com/en-us/cpp/cpp/structured-exception-handling-c-cpp for more information). const DWORD kCxxExceptionCode = 0xe06d7363; if (!GTEST_FLAG_GET(catch_exceptions) || seh_code == kCxxExceptionCode ||