Skip to content

Commit a0b67bb

Browse files
committed
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
1 parent acf6c82 commit a0b67bb

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

lldb/source/Host/posix/MainLoopPosix.cpp

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,13 @@
88
//===----------------------------------------------------------------------===//
99

1010
#include "lldb/Host/posix/MainLoopPosix.h"
11-
12-
#include <vector>
13-
1411
#include "lldb/Core/Error.h"
12+
#include <algorithm>
13+
#include <cassert>
14+
#include <cerrno>
15+
#include <csignal>
16+
#include <vector>
17+
#include <sys/select.h>
1518

1619
using namespace lldb;
1720
using namespace lldb_private;

0 commit comments

Comments
 (0)