aboutsummaryrefslogtreecommitdiff
path: root/unittests/gtest_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'unittests/gtest_common.h')
-rw-r--r--unittests/gtest_common.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/unittests/gtest_common.h b/unittests/gtest_common.h
index c8fe92575941..f61ba9d0c371 100644
--- a/unittests/gtest_common.h
+++ b/unittests/gtest_common.h
@@ -15,12 +15,3 @@
// This header file is force included by all of LLDB's unittest compilation
// units. Be very leary about putting anything in this file.
-
-#if defined(_MSC_VER) && (_HAS_EXCEPTIONS == 0)
-// Due to a bug in <thread>, when _HAS_EXCEPTIONS == 0 the header will try to
-// call
-// uncaught_exception() without having a declaration for it. The fix for this
-// is
-// to manually #include <eh.h>, which contains this declaration.
-#include <eh.h>
-#endif