aboutsummaryrefslogtreecommitdiff
path: root/lldb/unittests/gtest_common.h
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/unittests/gtest_common.h')
-rw-r--r--lldb/unittests/gtest_common.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/lldb/unittests/gtest_common.h b/lldb/unittests/gtest_common.h
index 006c959..c8fe9257 100644
--- a/lldb/unittests/gtest_common.h
+++ b/lldb/unittests/gtest_common.h
@@ -17,8 +17,10 @@
// 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
+// 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