| 1871 | RhsT m_rhs; |
| 1872 | |
| 1873 | void streamReconstructedExpression( std::ostream &os ) const override { |
| 1874 | formatReconstructedExpression |
| 1875 | ( os, Catch::Detail::stringify( m_lhs ), m_op, Catch::Detail::stringify( m_rhs ) ); |
| 1876 | } |
| 1877 | |
| 1878 | public: |
| 1879 | BinaryExpr( bool comparisonResult, LhsT lhs, StringRef op, RhsT rhs ) |
nothing calls this directly
no test coverage detected