From 890940292bcf372958f95bb9d72ff6fc4cbafae6 Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Tue, 7 Apr 2020 12:56:05 +0200 Subject: [PATCH] Revert "cgen: print bool in struct correctly" This reverts commit 78440be2b2d54a56b6c6a97a0a0ce26ca99cfed3. --- vlib/v/gen/cgen.v | 4 ---- 1 file changed, 4 deletions(-) diff --git a/vlib/v/gen/cgen.v b/vlib/v/gen/cgen.v index af741e3569..7ada2d9991 100644 --- a/vlib/v/gen/cgen.v +++ b/vlib/v/gen/cgen.v @@ -2952,8 +2952,6 @@ fn (g mut Gen) gen_str_for_type(sym table.TypeSymbol, styp string) { g.definitions.write('a.' + field.name) if field.typ == table.string_type { g.definitions.write('.len, a.${field.name}.str') - } else if field.typ == table.bool_type { - g.definitions.write(' == true ? 4 : 5, a.${field.name} == true ? "true" : "false"') } if i < info.fields.len - 1 { g.definitions.write(', ') @@ -2965,8 +2963,6 @@ fn (g mut Gen) gen_str_for_type(sym table.TypeSymbol, styp string) { fn type_to_fmt(typ table.Type) string { n := int(typ) if n == table.string_type { - return '\'%.*s\'' - } else if n == table.bool_type { return '%.*s' } return '%d'