* Sort comparison function. * Compares the value of pointers in the vectors. * * @params the string pointers to be compared. */
| 180 | * @params the string pointers to be compared. |
| 181 | */ |
| 182 | bool sortOnName(const string* a, const string* b) |
| 183 | { |
| 184 | return *a < *b; |
| 185 | } |
| 186 | |
| 187 | /** |
| 188 | * Build the vector of assignment operators. |
nothing calls this directly
no outgoing calls
no test coverage detected