Skip to content

Commit 1060cf3

Browse files
committed
tidying
1 parent 59d88f0 commit 1060cf3

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

lldb/include/lldb/Symbol/ObjectFile.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
#include "lldb/Utility/FileSpec.h"
2020
#include "lldb/Utility/UUID.h"
2121
#include "lldb/lldb-private.h"
22-
#include "llvm/ADT/StringRef.h"
2322
#include "llvm/Support/VersionTuple.h"
2423

2524
namespace swift {

lldb/source/Plugins/LanguageRuntime/Swift/LLDBMemoryReader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ LLDBMemoryReader::resolvePointer(swift::remote::RemoteAddress address,
133133
if (addr.GetSection()->CanContainSwiftReflectionData())
134134
if (auto *symbol = addr.CalculateSymbolContextSymbol()) {
135135
auto mangledName = symbol->GetMangled().GetMangledName().GetStringRef();
136-
// MemoryReader requires any this to be a Swift symbol. LLDB can also be
136+
// MemoryReader requires this to be a Swift symbol. LLDB can also be
137137
// aware of local symbols, so avoid returning those.
138138
if (swift::Demangle::isSwiftSymbol(mangledName))
139139
return {mangledName, 0};

0 commit comments

Comments
 (0)