| 289 | } |
| 290 | |
| 291 | inline std::string trim(const std::string& base, const std::string& fill) { |
| 292 | auto pos = base.find(fill); |
| 293 | return base.substr(0, pos); |
| 294 | } |
| 295 | } // namespace details |
| 296 | |
| 297 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected