| 296 | } |
| 297 | |
| 298 | string FormatStars(uint8_t starsCount) |
| 299 | { |
| 300 | std::string stars; |
| 301 | for (int i = 0; i < starsCount && i < kMaxStarsCount; ++i) |
| 302 | stars.append(kStarSymbol); |
| 303 | return stars; |
| 304 | } |
| 305 | |
| 306 | string FormatElevation(string_view elevation) |
| 307 | { |
no test coverage detected