From a7247f44ecc5b0bd3f782651ffdbf12e610a07e8 Mon Sep 17 00:00:00 2001 From: gmh <13917777+gmh5225@users.noreply.github.com> Date: Wed, 8 Nov 2023 16:05:54 +0800 Subject: [PATCH] Closes https://github.com/backengineering/llvm-msvc/issues/54 --- clang/include/clang/Basic/DiagnosticParseKinds.td | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/include/clang/Basic/DiagnosticParseKinds.td b/clang/include/clang/Basic/DiagnosticParseKinds.td index 178761bdcf4d..ebf575433bff 100644 --- a/clang/include/clang/Basic/DiagnosticParseKinds.td +++ b/clang/include/clang/Basic/DiagnosticParseKinds.td @@ -594,7 +594,7 @@ def err_except_spec_unparsed : Error< "unexpected end of exception specification">; def ext_dynamic_exception_spec : ExtWarn< "ISO C++17 does not allow dynamic exception specifications">, - InGroup, DefaultError; + InGroup, DefaultIgnore; def warn_exception_spec_deprecated : Warning< "dynamic exception specifications are deprecated">, InGroup, DefaultIgnore;