From a0b67bbed9311b252ac727c468723ee6ec3a304d Mon Sep 17 00:00:00 2001 From: Eugene Zelenko Date: Tue, 1 Nov 2016 17:11:10 +0000 Subject: [PATCH] Fix RHEL 6 build with missing cerrno and some other Include What You Use warnings. Differential revision: https://reviews.llvm.org/D26171 llvm-svn: 285710 --- lldb/source/Host/posix/MainLoopPosix.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lldb/source/Host/posix/MainLoopPosix.cpp b/lldb/source/Host/posix/MainLoopPosix.cpp index b6325a5..08c969e 100644 --- a/lldb/source/Host/posix/MainLoopPosix.cpp +++ b/lldb/source/Host/posix/MainLoopPosix.cpp @@ -8,10 +8,13 @@ //===----------------------------------------------------------------------===// #include "lldb/Host/posix/MainLoopPosix.h" - -#include - #include "lldb/Core/Error.h" +#include +#include +#include +#include +#include +#include using namespace lldb; using namespace lldb_private; -- 2.7.4