Regenerated single_include

This commit is contained in:
Phil Nash 2011-07-15 08:12:10 +01:00
parent 3723b527f5
commit 4021d65f64
1 changed files with 11 additions and 1 deletions

View File

@ -1508,6 +1508,16 @@ private:
return *this; return *this;
} }
///////////////////////////////////////////////////////////////////////////
template<Internal::Operator Op, typename T>
MutableResultInfo& captureExpression
(
const T* lhs,
int rhs
)
{
return captureExpression<Op>( lhs, reinterpret_cast<const T*>( rhs ) );
}
}; };
template<typename T> template<typename T>
@ -1712,7 +1722,7 @@ public:
/////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////
Expression<const char*> operator->* Expression<const char*> operator->*
( (
const char* operand const char* const& operand
) )
{ {
Expression<const char*> expr( m_result, operand ); Expression<const char*> expr( m_result, operand );