| 1401 | } |
| 1402 | template<typename RhsT> |
| 1403 | auto operator >= ( RhsT const& rhs ) -> BinaryExpr<LhsT, RhsT const&> const { |
| 1404 | return { static_cast<bool>(m_lhs >= rhs), m_lhs, ">=", rhs }; |
| 1405 | } |
| 1406 | template<typename RhsT> |
| 1407 | auto operator <= ( RhsT const& rhs ) -> BinaryExpr<LhsT, RhsT const&> const { |
| 1408 | return { static_cast<bool>(m_lhs <= rhs), m_lhs, "<=", rhs }; |
nothing calls this directly
no outgoing calls
no test coverage detected