Browse Source

Fix _an attribute list cannot appear here_ from clang-cl16

thegeorg 1 year ago
parent
commit
e50247b5e3

+ 1 - 1
contrib/libs/cxxsupp/libcxx/src/support/runtime/exception_pointer_msvc.ipp

@@ -63,7 +63,7 @@ extern "C" EHExceptionRecord** __current_exception();
 #ifdef __clang__
 struct _ThrowInfo;
 // defined in vcruntime<ver>.dll
-_LIBCPP_NORETURN extern "C" void __stdcall _CxxThrowException(
+extern "C" _LIBCPP_NORETURN void __stdcall _CxxThrowException(
     void* __exc, _ThrowInfo* __throw_info);
 #endif