summaryrefslogtreecommitdiff
path: root/Bus
diff options
context:
space:
mode:
authorfcolin2007-02-01 13:04:18 +0000
committerfcolin2007-02-01 13:04:18 +0000
commit7f09662fc07499b981f19085513b50756826e7d2 (patch)
treec2ec2cc7304b7a5256c87376424046c68466a5bf /Bus
parent54bfaa55c8b434b28884fbe567ed51e70b1a28ea (diff)
downloadivy-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')
-rw-r--r--Bus/Ivy/Regexp.cxx2
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 ;
}