Searched refs:NoExceptEvilBool (Results 1 – 1 of 1) sorted by relevance
71 struct NoExceptEvilBool { struct72 NoExceptEvilBool(NoExceptEvilBool const&) = default;73 NoExceptEvilBool(NoExceptEvilBool&&) = default;74 NoExceptEvilBool& operator=(NoExceptEvilBool const& other) = default;76 constexpr explicit NoExceptEvilBool(bool x) : value(x) {} in NoExceptEvilBool() function78 friend NoExceptEvilBool operator!(NoExceptEvilBool const& other) noexcept { in operator !()79 return NoExceptEvilBool{!other.value}; in operator !()408 using T = NoExceptCallable<NoExceptEvilBool>; in call_operator_noexcept_test()