This revision was automatically updated to reflect the committed changes.
Closed by commit rL285710: Fix RHEL 6 build with missing cerrno and some other 
Include What You Use… (authored by eugenezelenko).

Changed prior to commit:
  https://reviews.llvm.org/D26171?vs=76495&id=76590#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D26171

Files:
  lldb/trunk/source/Host/posix/MainLoopPosix.cpp


Index: lldb/trunk/source/Host/posix/MainLoopPosix.cpp
===================================================================
--- lldb/trunk/source/Host/posix/MainLoopPosix.cpp
+++ lldb/trunk/source/Host/posix/MainLoopPosix.cpp
@@ -8,10 +8,13 @@
 
//===----------------------------------------------------------------------===//
 
 #include "lldb/Host/posix/MainLoopPosix.h"
-
-#include <vector>
-
 #include "lldb/Core/Error.h"
+#include <algorithm>
+#include <cassert>
+#include <cerrno>
+#include <csignal>
+#include <vector>
+#include <sys/select.h>
 
 using namespace lldb;
 using namespace lldb_private;


Index: lldb/trunk/source/Host/posix/MainLoopPosix.cpp
===================================================================
--- lldb/trunk/source/Host/posix/MainLoopPosix.cpp
+++ lldb/trunk/source/Host/posix/MainLoopPosix.cpp
@@ -8,10 +8,13 @@
 //===----------------------------------------------------------------------===//
 
 #include "lldb/Host/posix/MainLoopPosix.h"
-
-#include <vector>
-
 #include "lldb/Core/Error.h"
+#include <algorithm>
+#include <cassert>
+#include <cerrno>
+#include <csignal>
+#include <vector>
+#include <sys/select.h>
 
 using namespace lldb;
 using namespace lldb_private;
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to