diff options
author | Raphael Isemann <teemperor@gmail.com> | 2019-12-16 08:36:25 +0100 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2019-12-16 08:59:08 +0100 |
commit | 068325012796bf2da527612ea6fdc61531c8beb3 (patch) | |
tree | abac1c7c88981e6e6b7c40df98c68f888389994a /lldb/source/Commands/CommandCompletions.cpp | |
parent | e2d47614a81d0805a869e614ffff1512e0136da9 (diff) | |
download | bcm5719-llvm-068325012796bf2da527612ea6fdc61531c8beb3.tar.gz bcm5719-llvm-068325012796bf2da527612ea6fdc61531c8beb3.zip |
[lldb][NFC] Remove unnecessary includes in source/Commands
Summary: This removes most of unnecessary includes in the `source/Commands` directory. This was generated by IWYU and a script that fixed all the bogus reports from IWYU. Patch is tested on Linux and macOS.
Reviewers: JDevlieghere
Reviewed By: JDevlieghere
Subscribers: krytarowski, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D71489
Diffstat (limited to 'lldb/source/Commands/CommandCompletions.cpp')
-rw-r--r-- | lldb/source/Commands/CommandCompletions.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lldb/source/Commands/CommandCompletions.cpp b/lldb/source/Commands/CommandCompletions.cpp index b382e26e2b7..d9bee66b442 100644 --- a/lldb/source/Commands/CommandCompletions.cpp +++ b/lldb/source/Commands/CommandCompletions.cpp @@ -6,11 +6,6 @@ // //===----------------------------------------------------------------------===// -#include <sys/stat.h> -#if defined(__APPLE__) || defined(__linux__) -#include <pwd.h> -#endif - #include "llvm/ADT/SmallString.h" #include "llvm/ADT/StringSet.h" @@ -23,13 +18,10 @@ #include "lldb/Interpreter/OptionValueProperties.h" #include "lldb/Symbol/CompileUnit.h" #include "lldb/Symbol/Variable.h" -#include "lldb/Target/Target.h" -#include "lldb/Utility/Args.h" #include "lldb/Utility/FileSpec.h" #include "lldb/Utility/StreamString.h" #include "lldb/Utility/TildeExpressionResolver.h" -#include "llvm/ADT/SmallString.h" #include "llvm/Support/FileSystem.h" #include "llvm/Support/Path.h" |