aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Host/msvc/Config.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Host/msvc/Config.h')
-rw-r--r--include/lldb/Host/msvc/Config.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/lldb/Host/msvc/Config.h b/include/lldb/Host/msvc/Config.h
index 4a4ed5799c53..37dfbf58a854 100644
--- a/include/lldb/Host/msvc/Config.h
+++ b/include/lldb/Host/msvc/Config.h
@@ -8,7 +8,7 @@
//===----------------------------------------------------------------------===//
//----------------------------------------------------------------------
-// LLDB currently doesn't have a dynamic configuration mechanism, so we
+// LLDB currently doesn't have a dynamic configuration mechanism, so we
// are going to hardcode things for now. Eventually these files will
// be auto generated by some configuration script that can detect
// platform functionality availability.
@@ -28,8 +28,10 @@
//#define LLDB_CONFIG_FCNTL_GETPATH_SUPPORTED 1
#if _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