| 2298 | |
| 2299 | template<typename LhsT, typename RhsT> |
| 2300 | auto compareNotEqual( LhsT const& lhs, RhsT&& rhs ) -> bool { return static_cast<bool>(lhs != rhs); } |
| 2301 | template<typename T> |
| 2302 | auto compareNotEqual( T* const& lhs, int rhs ) -> bool { return lhs != reinterpret_cast<void const*>( rhs ); } |
| 2303 | template<typename T> |