fmt: revert the fn \n change

pull/7070/head
Alexander Medvednikov 2020-12-01 17:00:00 +01:00
parent cc1d313d68
commit 3612bd58ef
1 changed files with 1 additions and 1 deletions

View File

@ -1265,7 +1265,7 @@ pub fn (mut f Fmt) fn_decl(node ast.FnDecl) {
f.stmts(node.stmts) f.stmts(node.stmts)
f.write('}') f.write('}')
} }
if !node.is_anon && !node.no_body { if !node.is_anon {
f.writeln('\n') f.writeln('\n')
} }
} else { } else {