| 43 | } |
| 44 | |
| 45 | std::string upper_string(const std::string &val) |
| 46 | { |
| 47 | std::string res = val; |
| 48 | std::transform(res.begin(), res.end(), res.begin(), ::toupper); |
| 49 | return res; |
| 50 | } |
| 51 | |
| 52 | std::string float_to_string_with_full_precision(float val) |
| 53 | { |
no test coverage detected