mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-22 06:17:48 +00:00
be7ce4110e
This reverts commit e96515433d
.
9 lines
149 B
C++
9 lines
149 B
C++
// 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);
|
|
}
|