Skip to content

Commit bdc63c2

Browse files
authored
Merge pull request #11038 from augusto2112/fix-dump
[lldb] Adapt TypeSystemSwift::Dump to upstream changes
2 parents 1c9ae4e + 0aca844 commit bdc63c2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lldb/source/Plugins/TypeSystem/Swift/TypeSystemSwift.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ bool TypeSystemSwift::ShouldEnableEmbeddedSwift(CompileUnit *cu) {
113113
return CheckFlagInCU(cu, "-enable-embedded-swift");
114114
}
115115

116-
void TypeSystemSwift::Dump(llvm::raw_ostream &output) {
116+
void TypeSystemSwift::Dump(llvm::raw_ostream &output, llvm::StringRef filter) {
117117
// TODO: What to dump?
118118
}
119119

lldb/source/Plugins/TypeSystem/Swift/TypeSystemSwift.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ class TypeSystemSwift : public TypeSystem {
213213
virtual CompilerType ConvertClangTypeToSwiftType(CompilerType clang_type) = 0;
214214

215215
/// \see lldb_private::TypeSystem::Dump
216-
void Dump(llvm::raw_ostream &output) override;
216+
void Dump(llvm::raw_ostream &output, llvm::StringRef filter) override;
217217

218218
lldb::Format GetFormat(lldb::opaque_compiler_type_t type) override;
219219

0 commit comments

Comments
 (0)