ZeroTierOne/ext/libpqxx-7.7.3/config-tests/fs.cxx
2022-06-24 10:12:36 -07:00

10 lines
216 B
C++

// Check for working std::filesystem support.
#include <filesystem>
int main()
{
// Apparently some versions of MinGW lack this comparison operator.
return std::filesystem::path{} != std::filesystem::path{};
}