diff options
author | fcolin | 2007-02-01 13:04:18 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 13:04:18 +0000 |
commit | 7f09662fc07499b981f19085513b50756826e7d2 (patch) | |
tree | c2ec2cc7304b7a5256c87376424046c68466a5bf /Bus/Ivy/Regexp.cxx | |
parent | 54bfaa55c8b434b28884fbe567ed51e70b1a28ea (diff) | |
download | ivy-cplusplus-7f09662fc07499b981f19085513b50756826e7d2.zip ivy-cplusplus-7f09662fc07499b981f19085513b50756826e7d2.tar.gz ivy-cplusplus-7f09662fc07499b981f19085513b50756826e7d2.tar.bz2 ivy-cplusplus-7f09662fc07499b981f19085513b50756826e7d2.tar.xz |
Utilisateur : Fcolin Date : 30/11/00 Heure : 15:35 Archivé dans $/Ivy Commentaire: suppression de l'assert en cas d'erreur de compile regexp (vss 3)
Diffstat (limited to 'Bus/Ivy/Regexp.cxx')
-rw-r--r-- | Bus/Ivy/Regexp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bus/Ivy/Regexp.cxx b/Bus/Ivy/Regexp.cxx index 8671411..049a22c 100644 --- a/Bus/Ivy/Regexp.cxx +++ b/Bus/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 ;
}
|