Skip to content

Commit e4f5723

Browse files
committed
[NFC] Remove some extra braces clang-format may or may not have added
1 parent 5c0493c commit e4f5723

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

flang/lib/Lower/Bridge.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4658,9 +4658,8 @@ class FirConverter : public Fortran::lower::AbstractConverter {
46584658

46594659
/// Lower functions contained in a module.
46604660
void lowerMod(Fortran::lower::pft::ModuleLikeUnit &mod) {
4661-
for (Fortran::lower::pft::FunctionLikeUnit &f : mod.nestedFunctions) {
4661+
for (Fortran::lower::pft::FunctionLikeUnit &f : mod.nestedFunctions)
46624662
lowerFunc(f);
4663-
}
46644663
}
46654664

46664665
void setCurrentPosition(const Fortran::parser::CharBlock &position) {

0 commit comments

Comments
 (0)