| 991 | |
| 992 | |
| 993 | int cmp_item_row::compare(cmp_item *c) |
| 994 | { |
| 995 | cmp_item_row *l_cmp= (cmp_item_row *) c; |
| 996 | for (uint i=0; i < n; i++) |
| 997 | { |
| 998 | int res; |
| 999 | if ((res= comparators[i]->compare(l_cmp->comparators[i]))) |
| 1000 | return res; |
| 1001 | } |
| 1002 | return 0; |
| 1003 | } |
| 1004 | |
| 1005 | int cmp_item_datetime::cmp(Item *arg) |
| 1006 | { |
no outgoing calls
no test coverage detected