From 32aa24a618635d7d4c23cc32019bfa379ac9aeed Mon Sep 17 00:00:00 2001 From: Felipe Pena Date: Wed, 25 Dec 2024 08:37:46 -0300 Subject: [PATCH] cleanup --- vlib/v/gen/c/json.v | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/vlib/v/gen/c/json.v b/vlib/v/gen/c/json.v index 0e881cd2ed48f9..2013abb461dfea 100644 --- a/vlib/v/gen/c/json.v +++ b/vlib/v/gen/c/json.v @@ -75,18 +75,6 @@ fn (mut g Gen) gen_jsons() { g.type_default_vars.clear() } init_styp += init_generated - // if utyp.is_ptr() { - // ptr_styp := g.styp(utyp.set_nr_muls(utyp.nr_muls() - 1)) - // g.write('HEAP(${ptr_styp}, ') - // } - // g.expr(ast.Expr(ast.StructInit{ - // typ: utyp.set_nr_muls(0) - // typ_str: styp - // })) - // if utyp.is_ptr() { - // g.write(')') - // } - // init_styp = g.out.cut_to(pos).trim_space() } else if utyp.is_ptr() { ptr_styp := g.styp(utyp.set_nr_muls(utyp.nr_muls() - 1)) init_styp += ' = HEAP(${ptr_styp}, {0})'