Disallow implicit std::string conversion for exists to avoid locale-dependent encoding on windows.
| 67 | // Disallow implicit std::string conversion for exists to avoid |
| 68 | // locale-dependent encoding on windows. |
| 69 | static inline bool exists(const path& p) |
| 70 | { |
| 71 | return std::filesystem::exists(p); |
| 72 | } |
| 73 | |
| 74 | // Allow explicit quoted stream I/O. |
| 75 | static inline auto quoted(const std::string& s) |
no outgoing calls