Home
last modified time | relevance | path

Searched refs:eq_returns_explicit_bool (Results 1 – 4 of 4) sorted by relevance

/llvm-project/libcxx/test/support/
H A Dcompare_types.h325 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 Dequality_comparable.compile.pass.cpp135 static_assert(!std::equality_comparable<eq_returns_explicit_bool>);
/llvm-project/libcxx/test/std/concepts/concepts.compare/concepts.totallyordered/
H A Dtotally_ordered.compile.pass.cpp153 static_assert(!std::totally_ordered<eq_returns_explicit_bool>);
H A Dtotally_ordered_with.compile.pass.cpp653 static_assert(!check_totally_ordered_with<totally_ordered_with_others, eq_returns_explicit_bool>());