Skip to content

Commit 5aea6ba

Browse files
committed
[lldb] Fix trailing whitespace & formatting in Core/Module.cpp (NFC)
I have my editor configured to remove trailing whitespace and every time I touch this file I end up with a bunch of clang-format changes to lines that were modified because of it. Nobody likes trailing whitespace so this cleans up the file.
1 parent ff9fcc7 commit 5aea6ba

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

lldb/source/Core/Module.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -971,14 +971,14 @@ void Module::FindTypes(const TypeQuery &query, TypeResults &results) {
971971
symbols->FindTypes(query, results);
972972
}
973973

974-
static Debugger::DebuggerList
974+
static Debugger::DebuggerList
975975
DebuggersOwningModuleRequestingInterruption(Module &module) {
976-
Debugger::DebuggerList requestors
977-
= Debugger::DebuggersRequestingInterruption();
976+
Debugger::DebuggerList requestors =
977+
Debugger::DebuggersRequestingInterruption();
978978
Debugger::DebuggerList interruptors;
979979
if (requestors.empty())
980980
return interruptors;
981-
981+
982982
for (auto debugger_sp : requestors) {
983983
if (!debugger_sp->InterruptRequested())
984984
continue;
@@ -993,12 +993,12 @@ SymbolFile *Module::GetSymbolFile(bool can_create, Stream *feedback_strm) {
993993
if (!m_did_load_symfile.load()) {
994994
std::lock_guard<std::recursive_mutex> guard(m_mutex);
995995
if (!m_did_load_symfile.load() && can_create) {
996-
Debugger::DebuggerList interruptors
997-
= DebuggersOwningModuleRequestingInterruption(*this);
996+
Debugger::DebuggerList interruptors =
997+
DebuggersOwningModuleRequestingInterruption(*this);
998998
if (!interruptors.empty()) {
999999
for (auto debugger_sp : interruptors) {
1000-
REPORT_INTERRUPTION(*(debugger_sp.get()),
1001-
"Interrupted fetching symbols for module {0}",
1000+
REPORT_INTERRUPTION(*(debugger_sp.get()),
1001+
"Interrupted fetching symbols for module {0}",
10021002
this->GetFileSpec());
10031003
}
10041004
return nullptr;

0 commit comments

Comments
 (0)