diff options
Diffstat (limited to 'Ivy')
-rw-r--r-- | Ivy/Regexp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ivy/Regexp.cxx b/Ivy/Regexp.cxx index 8671411..049a22c 100644 --- a/Ivy/Regexp.cxx +++ b/Ivy/Regexp.cxx @@ -1744,7 +1744,7 @@ string regexp::GetReplaceString( const char* sReplaceExp ) const string Regexp::GetErrorString() const
{
// make sure that if status == 0 that we have an error string
- assert( ( ! CompiledOK() ) ? ( rc ? rc->GetErrorString() : m_szError).length() != 0 : 1 );
+ //assert( ( ! CompiledOK() ) ? ( rc ? rc->GetErrorString() : m_szError).length() != 0 : 1 );
return rc ? rc->GetErrorString() : m_szError ;
}
|