From 7b034a54e306fae79445cd3a1cd30246dfcb1c82 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Sat, 3 Oct 2020 11:48:12 +0300 Subject: [PATCH] vfmt: make vlib/v/table/atypes.v vfmt-able --- vlib/v/table/atypes.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlib/v/table/atypes.v b/vlib/v/table/atypes.v index 15e6eea093..c146ca842a 100644 --- a/vlib/v/table/atypes.v +++ b/vlib/v/table/atypes.v @@ -759,9 +759,9 @@ pub mut: } fn (f &Field) equals(o &Field) bool { + // TODO: should all of those be checked ? return f.name == o.name && f.typ == o.typ && - // TODO Should those be checked ? f.is_pub == o.is_pub && f.is_mut == o.is_mut && f.is_global == o.is_global