mirror of
				https://github.com/catchorg/Catch2.git
				synced 2025-11-03 21:49:32 +01:00 
			
		
		
		
	regenerated single_include
This commit is contained in:
		@@ -1530,7 +1530,7 @@ public:
 | 
				
			|||||||
    Expression
 | 
					    Expression
 | 
				
			||||||
    (
 | 
					    (
 | 
				
			||||||
        MutableResultInfo& result,
 | 
					        MutableResultInfo& result,
 | 
				
			||||||
        const T& lhs
 | 
					        T lhs
 | 
				
			||||||
    )
 | 
					    )
 | 
				
			||||||
    :   m_result( result ),
 | 
					    :   m_result( result ),
 | 
				
			||||||
        m_lhs( lhs )
 | 
					        m_lhs( lhs )
 | 
				
			||||||
@@ -1638,7 +1638,7 @@ public:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
private:
 | 
					private:
 | 
				
			||||||
    MutableResultInfo& m_result;
 | 
					    MutableResultInfo& m_result;
 | 
				
			||||||
    const T& m_lhs;
 | 
					    T m_lhs;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
template<typename LhsT>
 | 
					template<typename LhsT>
 | 
				
			||||||
@@ -1727,12 +1727,12 @@ public:
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    ///////////////////////////////////////////////////////////////////////////
 | 
					    ///////////////////////////////////////////////////////////////////////////
 | 
				
			||||||
    template<typename T>
 | 
					    template<typename T>
 | 
				
			||||||
    Expression<T> operator->*
 | 
					    Expression<const T&> operator->*
 | 
				
			||||||
    (
 | 
					    (
 | 
				
			||||||
        const T & operand
 | 
					        const T & operand
 | 
				
			||||||
    )
 | 
					    )
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        Expression<T> expr( m_result, operand );
 | 
					        Expression<const T&> expr( m_result, operand );
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        return expr;
 | 
					        return expr;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user