| 1282 | |
| 1283 | public: |
| 1284 | explicit ExprLhs(LhsT lhs) : m_lhs(lhs) { |
| 1285 | } |
| 1286 | |
| 1287 | template <typename RhsT> auto operator==(RhsT const &rhs) -> BinaryExpr<LhsT, RhsT const &> const { |
| 1288 | return {compareEqual(m_lhs, rhs), m_lhs, "==", rhs}; |
nothing calls this directly
no outgoing calls
no test coverage detected