aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandCompletions.cpp
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2023-05-04 21:52:19 -0700
committerJonas Devlieghere <jonas@devlieghere.com>2023-05-04 22:00:17 -0700
commit917b3a7e62063398d2cbc4f8fe56feb68b0fae4f (patch)
treeb185fba1e2131078173cc024d6c07d8fa21bb038 /lldb/source/Commands/CommandCompletions.cpp
parent8cf768839a8db8531a2d60ede9497fe82fea7a5a (diff)
downloadllvm-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/Commands/CommandCompletions.cpp')
-rw-r--r--lldb/source/Commands/CommandCompletions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandCompletions.cpp b/lldb/source/Commands/CommandCompletions.cpp
index ae1ee1f..53a3f96 100644
--- a/lldb/source/Commands/CommandCompletions.cpp
+++ b/lldb/source/Commands/CommandCompletions.cpp
@@ -10,7 +10,6 @@
#include "llvm/ADT/StringSet.h"
#include "lldb/Breakpoint/Watchpoint.h"
-#include "lldb/Core/FileSpecList.h"
#include "lldb/Core/Module.h"
#include "lldb/Core/PluginManager.h"
#include "lldb/DataFormatters/DataVisualization.h"
@@ -27,6 +26,7 @@
#include "lldb/Target/RegisterContext.h"
#include "lldb/Target/Thread.h"
#include "lldb/Utility/FileSpec.h"
+#include "lldb/Utility/FileSpecList.h"
#include "lldb/Utility/StreamString.h"
#include "lldb/Utility/TildeExpressionResolver.h"