Blank line after function definition.

This commit is contained in:
Stefano Sanfilippo 2014-11-27 20:43:09 +01:00
parent ae7c1f98d9
commit c326de1131

View File

@ -167,7 +167,7 @@ void Function::emit(std::ostream &stream, int indent) {
args->emit(stream);
stream << ") {\n";
body->emit(stream, indent + 1);
stream << "}\n";
stream << "}\n\n";
}
void Main::emit(std::ostream &stream, int indent) {