Searched refs:MyBool (Results 1 – 3 of 3) sorted by relevance
86 struct MyBool { struct88 constexpr explicit MyBool(bool v) : value(v) {} in MyBool() argument95 inline constexpr MyBool operator==(const ComparesToMyBool& LHS, const ComparesToMyBool& RHS) noexce… in operator ==() argument96 return MyBool(LHS.value == RHS.value); in operator ==()99 return MyBool(LHS.value != RHS.value); in operator !=()101 inline constexpr MyBool operator<(const ComparesToMyBool& LHS, const ComparesToMyBool& RHS) noexcep… in operator <()102 return MyBool(LHS.value < RHS.value); in operator <()105 return MyBool(LHS.value <= RHS.value); in operator <=()107 inline constexpr MyBool operator>(const ComparesToMyBool& LHS, const ComparesToMyBool& RHS) noexcep… in operator >()108 return MyBool(LHS.value > RHS.value); in operator >()[all …]
16 typedef bool MyBool; typedef87 void typedefdBoolAsWritten(MyBool MB1, MyBool MB2) {} // NO-WARN: "MyBool" as written type name ign… in typedefdBoolAsWritten()
25 @property (readwrite) BOOL MyBool; property