Allow explicit quoted stream I/O.
| 73 | |
| 74 | // Allow explicit quoted stream I/O. |
| 75 | static inline auto quoted(const std::string& s) |
| 76 | { |
| 77 | return std::quoted(s, '"', '&'); |
| 78 | } |
| 79 | |
| 80 | // Allow safe path append operations. |
| 81 | static inline path operator+(path p1, path p2) |
no outgoing calls
no test coverage detected