| 475 | } |
| 476 | |
| 477 | static inline bool has_backslashes(const std::string_view str) |
| 478 | { |
| 479 | return (str.find('\\') != std::string::npos); |
| 480 | } |
| 481 | |
| 482 | static inline void replace_backslashes_with_forwardslashes(std::string& str) |
| 483 | { |
no test coverage detected