| 1816 | private: |
| 1817 | template<Internal::Operator Op, typename RhsT> |
| 1818 | BinaryExpression<T, Op, RhsT&> captureExpression( RhsT& rhs ) const { |
| 1819 | return BinaryExpression<T, Op, RhsT&>( m_rb, m_lhs, rhs ); |
| 1820 | } |
| 1821 | |
| 1822 | template<Internal::Operator Op> |
| 1823 | BinaryExpression<T, Op, bool> captureExpression( bool rhs ) const { |
nothing calls this directly
no outgoing calls
no test coverage detected