On Linux, paths are already UTF-8. These are identity operations.
| 13 | public: |
| 14 | // On Linux, paths are already UTF-8. These are identity operations. |
| 15 | std::filesystem::path Utf8ToPath(const std::string& utf8) override { |
| 16 | return std::filesystem::path(utf8); |
| 17 | } |
| 18 | |
| 19 | std::string PathToUtf8(const std::filesystem::path& p) override { |
| 20 | return p.string(); |
nothing calls this directly
no outgoing calls
no test coverage detected