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