From 719d9a5784c359e2fa74160029666e23be3a8cc3 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sat, 16 Nov 2024 11:05:05 +0200 Subject: [PATCH] cgen: small cleanup of the "// THE END" comment generated at the end of each C program --- vlib/v/gen/c/cgen.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/gen/c/cgen.v b/vlib/v/gen/c/cgen.v index 127b92ac98..a4db565e42 100644 --- a/vlib/v/gen/c/cgen.v +++ b/vlib/v/gen/c/cgen.v @@ -649,7 +649,7 @@ pub fn gen(files []&ast.File, mut table ast.Table, pref_ &pref.Preferences) (str header += '\n#endif\n' out_str := g.out.str() b.write_string(out_str) - b.writeln('\n// THE END.') + b.writeln('// THE END.') util.timing_measure('cgen common') res := b.str() $if trace_all_generic_fn_keys ? {