diff options
author | mikhnenko <[email protected]> | 2023-11-28 19:47:51 +0300 |
---|---|---|
committer | mikhnenko <[email protected]> | 2023-11-28 20:44:40 +0300 |
commit | 00075b525ee8dec802d514b18dd290640d60bab0 (patch) | |
tree | 2747b528e5c10f28c5e978e0f9518950982cd3e7 /contrib/libs/cxxsupp/libcxx/src | |
parent | e79e79a7a59159e1994e51c878fed9324c44c974 (diff) |
Drop more msvc-specific patches
Diffstat (limited to 'contrib/libs/cxxsupp/libcxx/src')
-rw-r--r-- | contrib/libs/cxxsupp/libcxx/src/support/runtime/exception_msvc.ipp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/contrib/libs/cxxsupp/libcxx/src/support/runtime/exception_msvc.ipp b/contrib/libs/cxxsupp/libcxx/src/support/runtime/exception_msvc.ipp index 409d6755f63..3ee2d21b68b 100644 --- a/contrib/libs/cxxsupp/libcxx/src/support/runtime/exception_msvc.ipp +++ b/contrib/libs/cxxsupp/libcxx/src/support/runtime/exception_msvc.ipp @@ -16,13 +16,6 @@ #include <__config> -#ifdef _LIBCPP_COMPILER_MSVC -// We don't want to depend on MSVC headers but -// we have conflicting definitions otherwise due to -// some other dependency on eh.h. -#include Y_MSVC_INCLUDE_NEXT(eh.h) - -#else extern "C" { typedef void (__cdecl* terminate_handler)(); _LIBCPP_CRT_FUNC terminate_handler __cdecl set_terminate( @@ -36,7 +29,6 @@ unexpected_handler __cdecl _get_unexpected(); int __cdecl __uncaught_exceptions(); } -#endif namespace std { |