| 873 | CargoSortType GetSortType() {return this->type;} |
| 874 | bool operator()(const CargoDataEntry &cd1, const CargoDataEntry &cd2) const; |
| 875 | bool operator()(const CargoDataEntry &cd1, const std::unique_ptr<CargoDataEntry> &cd2) const { return this->operator()(cd1, *cd2); } |
| 876 | bool operator()(const std::unique_ptr<CargoDataEntry> &cd1, const CargoDataEntry &cd2) const { return this->operator()(*cd1, cd2); } |
| 877 | bool operator()(const std::unique_ptr<CargoDataEntry> &cd1, const std::unique_ptr<CargoDataEntry> &cd2) const { return this->operator()(*cd1, *cd2); } |
| 878 |
nothing calls this directly
no test coverage detected