aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorthegeorg <thegeorg@yandex-team.com>2023-12-14 02:04:44 +0300
committerthegeorg <thegeorg@yandex-team.com>2023-12-14 02:28:52 +0300
commite50247b5e3a3952c4033494b37ed26f59473f472 (patch)
tree3f9b6eb36e2af97de3857d606032083e551411c7
parentb25c3f401b8c900040b055bfbdc162e7db1c0033 (diff)
downloadydb-e50247b5e3a3952c4033494b37ed26f59473f472.tar.gz
Fix _an attribute list cannot appear here_ from clang-cl16
-rw-r--r--contrib/libs/cxxsupp/libcxx/src/support/runtime/exception_pointer_msvc.ipp2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libs/cxxsupp/libcxx/src/support/runtime/exception_pointer_msvc.ipp b/contrib/libs/cxxsupp/libcxx/src/support/runtime/exception_pointer_msvc.ipp
index 300acbf759..c88c68cca5 100644
--- a/contrib/libs/cxxsupp/libcxx/src/support/runtime/exception_pointer_msvc.ipp
+++ b/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