drogon/cmake/tests/check_has_std_filesystem_path.cc
Greisberger Christophe d888816997
Added support for paths containing unicode characters on Windows (#921)
Co-authored-by: Christophe Greisberger <christophe@greisberger.fr>
Co-authored-by: an-tao <antao2002@gmail.com>
Co-authored-by: marty1885 <marty188586@gmail.com>
2021-07-12 22:38:02 +08:00

8 lines
99 B
C++
Executable File

#include <filesystem>
int main()
{
std::filesystem::path aPath("../");
return 0;
}