| 21 | std::string description; |
| 22 | |
| 23 | SortState(ComparisonFunction & sortFunction, bool sortAscending, const std::string & sortDescription) : comparisonFunction(sortFunction), ascending(sortAscending), description(sortDescription) {} |
| 24 | }; |
| 25 | |
| 26 | private: |
nothing calls this directly
no outgoing calls
no test coverage detected