| 59 | /// returns filename as UTF8-encoded string |
| 60 | #if defined( _LIBCPP_VERSION ) && _LIBCPP_VERSION < 12000 |
| 61 | [[nodiscard]] inline std::string utf8string( const std::filesystem::path & path ) |
| 62 | { return path.u8string(); } |
| 63 | #else |
| 64 | [[nodiscard]] inline std::string utf8string( const std::filesystem::path & path ) |
| 65 | { return asString( path.u8string() ); } |
no test coverage detected