Disallow implicit std::string conversion for absolute to avoid locale-dependent encoding on windows.
| 60 | // Disallow implicit std::string conversion for absolute to avoid |
| 61 | // locale-dependent encoding on windows. |
| 62 | static inline path absolute(const path& p) |
| 63 | { |
| 64 | return std::filesystem::absolute(p); |
| 65 | } |
| 66 | |
| 67 | // Disallow implicit std::string conversion for exists to avoid |
| 68 | // locale-dependent encoding on windows. |
no outgoing calls
no test coverage detected