iwyu fixes for lldbCore.

This adjusts header file includes for headers and source files
in Core.  In doing so, one dependency cycle is eliminated
because all the includes from Core to that project were dead
includes anyway.  In places where some files in other projects
were only compiling due to a transitive include from another
header, fixups have been made so that those files also include
the header they need.  Tested on Windows and Linux, and plan
to address failures on OSX and FreeBSD after watching the
bots.

llvm-svn: 299714
This commit is contained in:
Zachary Turner
2017-04-06 21:28:29 +00:00
parent 1902b337e9
commit 2f3df6137a
127 changed files with 1967 additions and 852 deletions

View File

@@ -9,12 +9,7 @@
#include "lldb/Core/StreamFile.h"
// C Includes
#include <stdio.h>
// C++ Includes
// Other libraries and framework includes
// Project includes
#include "lldb/Utility/Error.h"
using namespace lldb;
using namespace lldb_private;