src/list.c

changeset 628
1e2be40f0cb5
parent 618
1f5a8f6f3015
child 630
ac5e7f789048
     1.1 --- a/src/list.c	Sun Nov 20 17:48:42 2022 +0100
     1.2 +++ b/src/list.c	Sun Nov 20 21:08:36 2022 +0100
     1.3 @@ -57,10 +57,10 @@
     1.4          CxList const *other
     1.5  ) {
     1.6      if (list->cl->compare == other->cl->compare) {
     1.7 -        /* same compare function, lists are compatible */
     1.8 +        // same compare function, lists are compatible
     1.9          return list->cl->compare(list, other);
    1.10      } else {
    1.11 -        /* different compare functions, use iterator */
    1.12 +        // different compare functions, use iterator
    1.13          if (list->size == other->size) {
    1.14              // TODO: we would need a const iterator
    1.15              CxIterator left = cxListBegin(list);

mercurial