ZeroTierOne/ext/libpqxx-7.7.3/config-tests/fs.cxx

10 lines
216 B
C++
Raw Normal View History

// 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{};
}