From: Eugene Zelenko Date: Tue, 1 Nov 2016 17:11:10 +0000 (+0000) Subject: Fix RHEL 6 build with missing cerrno and some other Include What You Use warnings. X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a0b67bbed9311b252ac727c468723ee6ec3a304d;p=platform%2Fupstream%2Fllvm.git 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 --- 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;