Skip to content

Commit 42c19a5

Browse files
committed
format
1 parent 88af970 commit 42c19a5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

flang/lib/Semantics/resolve-names.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2440,8 +2440,7 @@ void ScopeHandler::PushScope(Scope &scope) {
24402440
currScope_ = &scope;
24412441
auto kind{currScope_->kind()};
24422442
if (kind != Scope::Kind::BlockConstruct &&
2443-
kind != Scope::Kind::OtherConstruct &&
2444-
kind != Scope::Kind::OtherClause) {
2443+
kind != Scope::Kind::OtherConstruct && kind != Scope::Kind::OtherClause) {
24452444
BeginScope(scope);
24462445
}
24472446
// The name of a module or submodule cannot be "used" in its scope,

0 commit comments

Comments
 (0)