* Sort comparison function. * Compares the length of the value of pointers in the vectors. * The LONGEST strings will be first in the vector. * * @params the string pointers to be compared. */
| 169 | * @params the string pointers to be compared. |
| 170 | */ |
| 171 | bool sortOnLength(const string* a, const string* b) |
| 172 | { |
| 173 | return (*a).length() > (*b).length(); |
| 174 | } |
| 175 | |
| 176 | /** |
| 177 | * Sort comparison function. |
nothing calls this directly
no outgoing calls
no test coverage detected