summaryrefslogtreecommitdiffstats
path: root/contrib/libs/cxxsupp/libcxx/src
diff options
context:
space:
mode:
authormikhnenko <[email protected]>2023-11-28 19:47:51 +0300
committermikhnenko <[email protected]>2023-11-28 20:44:40 +0300
commit00075b525ee8dec802d514b18dd290640d60bab0 (patch)
tree2747b528e5c10f28c5e978e0f9518950982cd3e7 /contrib/libs/cxxsupp/libcxx/src
parente79e79a7a59159e1994e51c878fed9324c44c974 (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.ipp8
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 {