| 45 | } |
| 46 | |
| 47 | inline const char *separators(Style style) { |
| 48 | if (real_style(style) == Style::windows) |
| 49 | return "\\/"; |
| 50 | return "/"; |
| 51 | } |
| 52 | |
| 53 | inline char preferred_separator(Style style) { |
| 54 | if (real_style(style) == Style::windows) |
no test coverage detected