diff options
author | fcolin | 2007-02-01 13:04:34 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 13:04:34 +0000 |
commit | e6dbff317adc5b2dc6d174128f3f9d6177cf1207 (patch) | |
tree | d40a26f1b9ce03d28617dad62203ca0a119a5bf4 /Ivy/Regexp.cxx | |
parent | ea575235ff3f2029061c0bfc5de2e452490d1d43 (diff) | |
download | ivy-cplusplus-e6dbff317adc5b2dc6d174128f3f9d6177cf1207.zip ivy-cplusplus-e6dbff317adc5b2dc6d174128f3f9d6177cf1207.tar.gz ivy-cplusplus-e6dbff317adc5b2dc6d174128f3f9d6177cf1207.tar.bz2 ivy-cplusplus-e6dbff317adc5b2dc6d174128f3f9d6177cf1207.tar.xz |
Utilisateur : Fcolin Date : 23/09/05 Heure : 15:51 Archivé dans $/Bus/Ivy Commentaire: (vss 11)
Diffstat (limited to 'Ivy/Regexp.cxx')
-rw-r--r-- | Ivy/Regexp.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Ivy/Regexp.cxx b/Ivy/Regexp.cxx index 5916ec8..4dc1823 100644 --- a/Ivy/Regexp.cxx +++ b/Ivy/Regexp.cxx @@ -255,7 +255,8 @@ void CRegErrorHandler::ClearErrorString() const const char * CRegErrorHandler::FindErr( int id )
{
- for ( struct regErr * perr = errors; perr->m_id != REGERR_SENTINEL_VALUE; perr++ )
+ struct regErr * perr;
+ for ( perr = errors; perr->m_id != REGERR_SENTINEL_VALUE; perr++ )
if ( perr->m_id == id )
return perr->m_err;
|