Allow path objects arguments for compatibility.
| 33 | |
| 34 | // Allow path objects arguments for compatibility. |
| 35 | path(std::filesystem::path path) : std::filesystem::path::path(std::move(path)) {} |
| 36 | path& operator=(std::filesystem::path path) { std::filesystem::path::operator=(std::move(path)); return *this; } |
| 37 | path& operator/=(std::filesystem::path path) { std::filesystem::path::operator/=(std::move(path)); return *this; } |
| 38 |
no outgoing calls
no test coverage detected