diff options
| author | Zachary Turner <zturner@google.com> | 2017-04-06 18:12:24 +0000 |
|---|---|---|
| committer | Zachary Turner <zturner@google.com> | 2017-04-06 18:12:24 +0000 |
| commit | 4479ac15c93fa88e1e0b3c92118412cbccc2b839 (patch) | |
| tree | 6c98f2d056f6a1468e612d114ca31b5a1f3e20ee /lldb/source/Utility/LLDBAssert.cpp | |
| parent | 01220bf9d271717b781e2704febedb0da13b7f95 (diff) | |
| download | bcm5719-llvm-4479ac15c93fa88e1e0b3c92118412cbccc2b839.tar.gz bcm5719-llvm-4479ac15c93fa88e1e0b3c92118412cbccc2b839.zip | |
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
Diffstat (limited to 'lldb/source/Utility/LLDBAssert.cpp')
| -rw-r--r-- | lldb/source/Utility/LLDBAssert.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/source/Utility/LLDBAssert.cpp b/lldb/source/Utility/LLDBAssert.cpp index 6f35dcd32f4..48c1b69e894 100644 --- a/lldb/source/Utility/LLDBAssert.cpp +++ b/lldb/source/Utility/LLDBAssert.cpp @@ -1,5 +1,4 @@ -//===--------------------- LLDBAssert.cpp --------------------------*- C++ -//-*-===// +//===--------------------- LLDBAssert.cpp ------------------------*- C++-*-===// // // The LLVM Compiler Infrastructure // |

