| 2231 | |
| 2232 | public: |
| 2233 | BinaryExpr( bool comparisonResult, LhsT lhs, StringRef op, RhsT rhs ) |
| 2234 | : ITransientExpression{ true, comparisonResult }, |
| 2235 | m_lhs( lhs ), |
| 2236 | m_op( op ), |
| 2237 | m_rhs( rhs ) |
| 2238 | {} |
| 2239 | |
| 2240 | template<typename T> |
| 2241 | auto operator && ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { |
nothing calls this directly
no outgoing calls
no test coverage detected