| 1385 | |
| 1386 | template<typename RhsT> |
| 1387 | auto operator != ( RhsT const& rhs ) -> BinaryExpr<LhsT, RhsT const&> const { |
| 1388 | return { compareNotEqual( m_lhs, rhs ), m_lhs, "!=", rhs }; |
| 1389 | } |
| 1390 | auto operator != ( bool rhs ) -> BinaryExpr<LhsT, bool> const { |
| 1391 | return { m_lhs != rhs, m_lhs, "!=", rhs }; |
| 1392 | } |
nothing calls this directly
no test coverage detected