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

9 lines
149 B
C++
Raw Normal View History

// Test for C++20 std::cmp_greater etc. support.
#include <utility>
int main()
{
return std::cmp_greater(-1, 2u) && std::cmp_less_equal(3, 0);
}