From 0d3dc16714e986e3a2720b64ad451bb24596485a Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 13:04:18 +0000 Subject: 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) --- Ivy/Regexp.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ; } -- cgit v1.1