Fix expression compile errors.

This commit is contained in:
Wichert Akkerman 2012-11-16 10:47:33 +01:00
parent 90a3594e10
commit fec10533e7
2 changed files with 2 additions and 2 deletions

View File

@ -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 ) {

View File

@ -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 ) {