Fixed tests with string literal on lhs

This commit is contained in:
Phil Nash
2011-06-29 19:22:56 +01:00
parent b5fabcb26b
commit 1adebefb50
4 changed files with 14 additions and 2 deletions

View File

@@ -546,6 +546,17 @@ public:
return expr;
}
///////////////////////////////////////////////////////////////////////////
Expression<const char*> operator->*
(
const char* operand
)
{
Expression<const char*> expr( m_result, operand );
return expr;
}
///////////////////////////////////////////////////////////////////////////
template<typename T>
PtrExpression<T> operator->*