Skip to content

Commit bca8f55

Browse files
committed
Fix formatting
1 parent a924424 commit bca8f55

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lldb/source/Core/ModuleList.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ const ModuleList &ModuleList::operator=(const ModuleList &rhs) {
214214
ModuleList::~ModuleList() = default;
215215

216216
void ModuleList::AppendImpl(const ModuleSP &module_sp, bool use_notifier) {
217-
if (!module_sp)
217+
if (!module_sp)
218218
return;
219219
{
220220
std::lock_guard<std::recursive_mutex> guard(m_modules_mutex);
@@ -246,7 +246,6 @@ void ModuleList::AppendImpl(const ModuleSP &module_sp, bool use_notifier) {
246246
// NotifyModuleAdded should be thread-safe
247247
if (use_notifier && m_notifier)
248248
m_notifier->NotifyModuleAdded(*this, module_sp);
249-
250249
}
251250

252251
void ModuleList::Append(const ModuleSP &module_sp, bool notify) {

0 commit comments

Comments
 (0)