Skip to content

Commit f06864b

Browse files
Merge pull request #4092 from adrian-prantl/55413021
Remove all mentions of RemoteAST from SwiftHashedContainer. (NFC)
2 parents eb5ac23 + 40eb6ef commit f06864b

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

lldb/source/Plugins/Language/Swift/SwiftHashedContainer.cpp

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,14 @@
1515
#include "Plugins/LanguageRuntime/ObjC/ObjCLanguageRuntime.h"
1616
#include "Plugins/LanguageRuntime/Swift/SwiftLanguageRuntime.h"
1717
#include "Plugins/TypeSystem/Clang/TypeSystemClang.h"
18-
#include "Plugins/TypeSystem/Swift/SwiftASTContext.h"
18+
#include "Plugins/TypeSystem/Swift/TypeSystemSwift.h"
1919
#include "lldb/Core/ValueObjectConstResult.h"
2020
#include "lldb/DataFormatters/FormattersHelpers.h"
2121
#include "lldb/Target/Process.h"
2222
#include "lldb/Utility/DataBufferHeap.h"
2323

2424
#include "Plugins/Language/ObjC/NSDictionary.h"
2525

26-
#include "swift/AST/ASTContext.h"
27-
#include "swift/AST/Types.h"
28-
#include "swift/Remote/RemoteAddress.h"
29-
#include "swift/RemoteAST/RemoteAST.h"
3026
#include "llvm/ADT/StringRef.h"
3127

3228
#include <algorithm>
@@ -460,7 +456,7 @@ NativeHashedStorageHandler::NativeHashedStorageHandler(
460456
auto *runtime = SwiftLanguageRuntime::Get(m_process);
461457
if (!runtime)
462458
return;
463-
std::vector<SwiftASTContext::TupleElement> tuple_elements{
459+
std::vector<TypeSystemSwift::TupleElement> tuple_elements{
464460
{g_key, key_type}, {g_value, value_type}};
465461
m_element_type = type_system->CreateTupleType(tuple_elements);
466462
auto *swift_type =

0 commit comments

Comments
 (0)