| 27 | } |
| 28 | |
| 29 | std::string DoubleToStringFilter(double val) { |
| 30 | if (0 == val) { |
| 31 | return ""; |
| 32 | } else { |
| 33 | return DoubleToString(val); |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | struct CmpByValue { |
| 38 | bool operator()(const std::pair<std::string, std::vector<float>> &lhs, |
no test coverage detected