From 4479ac15c93fa88e1e0b3c92118412cbccc2b839 Mon Sep 17 00:00:00 2001 From: Zachary Turner Date: Thu, 6 Apr 2017 18:12:24 +0000 Subject: iwyu fixes on lldbUtility. This patch makes adjustments to header file includes in lldbUtility based on recommendations by the iwyu tool (include-what-you-use). The goal here is to make sure that all files include the exact set of headers which are needed for that file only, to eliminate cases of dead includes (e.g. someone deleted some code but forgot to delete the header includes that that code necessitated), and to eliminate the case where header includes are picked up transitively. llvm-svn: 299676 --- lldb/source/Utility/Stream.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lldb/source/Utility/Stream.cpp') diff --git a/lldb/source/Utility/Stream.cpp b/lldb/source/Utility/Stream.cpp index 8899a43496c..04edc25b2b0 100644 --- a/lldb/source/Utility/Stream.cpp +++ b/lldb/source/Utility/Stream.cpp @@ -11,12 +11,12 @@ #include "lldb/Utility/Endian.h" #include "lldb/Utility/VASPrintf.h" -#include -#include -#include -#include +#include "llvm/ADT/SmallString.h" // for SmallString + +#include #include +#include using namespace lldb; using namespace lldb_private; -- cgit v1.2.3