| 1867 | |
| 1868 | public: |
| 1869 | BinaryExpr( bool comparisonResult, LhsT lhs, StringRef op, RhsT rhs ) |
| 1870 | : ITransientExpression{ true, comparisonResult }, |
| 1871 | m_lhs( lhs ), |
| 1872 | m_op( op ), |
| 1873 | m_rhs( rhs ) |
| 1874 | {} |
| 1875 | |
| 1876 | template<typename T> |
| 1877 | auto operator && ( T ) const -> BinaryExpr<LhsT, RhsT const&> const { |
nothing calls this directly
no outgoing calls
no test coverage detected