| 4964 | namespace Catch { |
| 4965 | |
| 4966 | auto operator <<( std::ostream& os, ITransientExpression const& expr ) -> std::ostream& { |
| 4967 | expr.streamReconstructedExpression( os ); |
| 4968 | return os; |
| 4969 | } |
| 4970 | |
| 4971 | LazyExpression::LazyExpression( bool isNegated ) |
| 4972 | : m_isNegated( isNegated ) |
nothing calls this directly
no test coverage detected