Searched refs:eq_returns_explicit_bool (Results 1 – 4 of 4) sorted by relevance
/llvm-project/libcxx/test/support/ |
H A D | compare_types.h | 325 struct eq_returns_explicit_bool { struct 326 friend explicit_bool operator==(eq_returns_explicit_bool, eq_returns_explicit_bool); 327 friend bool operator!=(eq_returns_explicit_bool, eq_returns_explicit_bool); 328 friend bool operator<(eq_returns_explicit_bool, eq_returns_explicit_bool); 329 friend bool operator>(eq_returns_explicit_bool, eq_returns_explicit_bool); 330 friend bool operator<=(eq_returns_explicit_bool, eq_returns_explicit_bool); 331 friend bool operator>=(eq_returns_explicit_bool, eq_returns_explicit_bool); 335 friend explicit_bool operator==(eq_returns_explicit_bool, totally_ordered_with_others); 336 friend explicit_bool operator==(totally_ordered_with_others, eq_returns_explicit_bool); 337 friend bool operator!=(eq_returns_explicit_bool, totally_ordered_with_others); [all …]
|
/llvm-project/libcxx/test/std/concepts/concepts.compare/concept.equalitycomparable/ |
H A D | equality_comparable.compile.pass.cpp | 135 static_assert(!std::equality_comparable<eq_returns_explicit_bool>);
|
/llvm-project/libcxx/test/std/concepts/concepts.compare/concepts.totallyordered/ |
H A D | totally_ordered.compile.pass.cpp | 153 static_assert(!std::totally_ordered<eq_returns_explicit_bool>);
|
H A D | totally_ordered_with.compile.pass.cpp | 653 static_assert(!check_totally_ordered_with<totally_ordered_with_others, eq_returns_explicit_bool>());
|