You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 rivejä
195 B

  1. #include <cpputils/mp/operations/compare/less.h>
  2. using namespace ::utl::mp;
  3. namespace test_mp_operations_compare_equal
  4. {
  5. static_assert(less(1, 2), "");
  6. static_assert(!less(2, 1), "");
  7. }