Skip to content

Commit 9e19979

Browse files
clang-format
1 parent ff637dd commit 9e19979

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

flang/lib/Semantics/scope.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,8 @@ Symbol *Scope::FindCommonBlock(const SourceName &name) const {
158158
if (const auto it{commonBlocks_.find(name)}; it != commonBlocks_.end()) {
159159
return &*it->second;
160160
} else if (IsSubmodule()) {
161-
const Scope *parent{symbol_ ? symbol_->get<ModuleDetails>().parent() : nullptr};
161+
const Scope *parent{
162+
symbol_ ? symbol_->get<ModuleDetails>().parent() : nullptr};
162163
return parent ? parent->FindCommonBlock(name) : nullptr;
163164
} else if (!IsTopLevel()) {
164165
return parent_ ? parent_->FindCommonBlock(name) : nullptr;

0 commit comments

Comments
 (0)