gulrak / filesystem

An implementation of C++17 std::filesystem for C++11 /C++14/C++17/C++20 on Windows, macOS, Linux and FreeBSD.
MIT License
1.34k stars 173 forks source link

C++20 support? #71

Closed shrinktofit closed 3 years ago

shrinktofit commented 4 years ago

As you know, MacOS support -std=c++20 even in 10.14 but does not support <filesystem> until 10.15.

char8_t, std::u8string are coming soon. std::filesystem::path::string() will returns std::u8string instead of std::string.

gulrak commented 4 years ago

Indeed, C++20 support is on my list of planned features, I just didn't find time to really work on it. I guess it will take me a few more weeks to finish it, as it is not needed in my payed work project and my free time available for it is limited. It will be released in v1.4.0.

gulrak commented 3 years ago

This is now solved with release v1.4.0

shrinktofit commented 3 years ago

This is now solved with release v1.4.0

Thank you!