| 491 | } |
| 492 | |
| 493 | inline std::string toLower(const std::string& inp) |
| 494 | { |
| 495 | std::string out = inp; |
| 496 | std::transform(out.begin(), out.end(), out.begin(), ::tolower); |
| 497 | return out; |
| 498 | } |
| 499 | |
| 500 | inline float getMaxValue(const float* buffer, int64_t size) |
| 501 | { |
no outgoing calls
no test coverage detected