diff -r cc8cbabd27cd -r 1e2be40f0cb5 src/list.c --- a/src/list.c Sun Nov 20 17:48:42 2022 +0100 +++ b/src/list.c Sun Nov 20 21:08:36 2022 +0100 @@ -57,10 +57,10 @@ CxList const *other ) { if (list->cl->compare == other->cl->compare) { - /* same compare function, lists are compatible */ + // same compare function, lists are compatible return list->cl->compare(list, other); } else { - /* different compare functions, use iterator */ + // different compare functions, use iterator if (list->size == other->size) { // TODO: we would need a const iterator CxIterator left = cxListBegin(list);