diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2023-05-04 21:52:19 -0700 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2023-05-04 22:00:17 -0700 |
commit | 917b3a7e62063398d2cbc4f8fe56feb68b0fae4f (patch) | |
tree | b185fba1e2131078173cc024d6c07d8fa21bb038 /lldb/source/Interpreter/CommandObject.cpp | |
parent | 8cf768839a8db8531a2d60ede9497fe82fea7a5a (diff) | |
download | llvm-917b3a7e62063398d2cbc4f8fe56feb68b0fae4f.zip llvm-917b3a7e62063398d2cbc4f8fe56feb68b0fae4f.tar.gz llvm-917b3a7e62063398d2cbc4f8fe56feb68b0fae4f.tar.bz2 |
[lldb] Move Core/FileSpecList -> Utility/FileSpecList (NFC)
There's no reason for FileSpecList to live in lldb/Core while FileSpec
lives in lldb/Utility. Move FileSpecList next to FileSpec.
Diffstat (limited to 'lldb/source/Interpreter/CommandObject.cpp')
-rw-r--r-- | lldb/source/Interpreter/CommandObject.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Interpreter/CommandObject.cpp b/lldb/source/Interpreter/CommandObject.cpp index c13ce4e..313d24f 100644 --- a/lldb/source/Interpreter/CommandObject.cpp +++ b/lldb/source/Interpreter/CommandObject.cpp @@ -23,11 +23,11 @@ // These are for the Sourcename completers. // FIXME: Make a separate file for the completers. -#include "lldb/Core/FileSpecList.h" #include "lldb/DataFormatters/FormatManager.h" #include "lldb/Target/Process.h" #include "lldb/Target/Target.h" #include "lldb/Utility/FileSpec.h" +#include "lldb/Utility/FileSpecList.h" #include "lldb/Target/Language.h" |