diff options
author | fcolin | 2007-02-01 13:04:18 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 13:04:18 +0000 |
commit | 0d3dc16714e986e3a2720b64ad451bb24596485a (patch) | |
tree | f0f54db7053a63c0287c697f939df060eb5d8100 /Ivy/Regexp.cxx | |
parent | 4e12afd9ab0ea2c3f798e14664fe626b3b0adc9d (diff) | |
download | ivy-cplusplus-0d3dc16714e986e3a2720b64ad451bb24596485a.zip ivy-cplusplus-0d3dc16714e986e3a2720b64ad451bb24596485a.tar.gz ivy-cplusplus-0d3dc16714e986e3a2720b64ad451bb24596485a.tar.bz2 ivy-cplusplus-0d3dc16714e986e3a2720b64ad451bb24596485a.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 'Ivy/Regexp.cxx')
-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 ;
}
|