1
0
mirror of https://github.com/catchorg/Catch2.git synced 2025-03-30 23:24:47 +02:00

Merge pull request from wichert/expression-compile-error

integration branch does not compile
This commit is contained in:
Phil Nash 2012-11-16 02:02:19 -08:00
commit 88a3f23265
2 changed files with 2 additions and 2 deletions
include/internal
single_include

@ -22,7 +22,7 @@ class ExpressionLhs {
void operator = ( const ExpressionLhs& );
public:
ExpressionLhs( const T& lhs ) : m_lhs( lhs ) {}
ExpressionLhs( T lhs ) : m_lhs( lhs ) {}
template<typename RhsT>
ExpressionResultBuilder& operator == ( const RhsT& rhs ) {

@ -938,7 +938,7 @@ class ExpressionLhs {
void operator = ( const ExpressionLhs& );
public:
ExpressionLhs( const T& lhs ) : m_lhs( lhs ) {}
ExpressionLhs( T lhs ) : m_lhs( lhs ) {}
template<typename RhsT>
ExpressionResultBuilder& operator == ( const RhsT& rhs ) {