| 52 | }; |
| 53 | |
| 54 | struct lt_pair_float_string |
| 55 | { |
| 56 | bool operator()( |
| 57 | const std::pair<float, std::string>& s1, const std::pair<float, std::string>& s2) const |
| 58 | { |
| 59 | return s1.first < s2.first; |
| 60 | } |
| 61 | }; |
| 62 | |
| 63 | struct gt_pair_int_string |
| 64 | { |
no outgoing calls
no test coverage detected