Detect and warn about overly complex expressions

This commit is contained in:
Phil Nash
2010-11-11 07:21:57 +00:00
parent 3d0fed768a
commit 48a70220a3
3 changed files with 22 additions and 11 deletions

View File

@@ -63,7 +63,7 @@ public:
template<typename RhsT>
MutableResultInfo& operator ||( const RhsT& rhs )
{
// !TBD: set message to say we haven't captured all parts
m_expressionIncomplete = true;
return *this;
}