| 1839 | BinaryExpression& operator = ( BinaryExpression& ); |
| 1840 | |
| 1841 | void endExpression() const { |
| 1842 | m_rb |
| 1843 | .setResultType( Internal::compare<Op>( m_lhs, m_rhs ) ) |
| 1844 | .endExpression( *this ); |
| 1845 | } |
| 1846 | |
| 1847 | virtual bool isBinaryExpression() const CATCH_OVERRIDE { |
| 1848 | return true; |
nothing calls this directly
no test coverage detected