diff options
author | fcolin | 2007-02-01 13:04:46 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 13:04:46 +0000 |
commit | e18ab55cb4a3605cb44f39e829970f7fbd705107 (patch) | |
tree | c491479a1c861eccf30a1c4409a4eece291741bd /Ivy/Regexp.h | |
parent | 3206d022a755ffe703964afe2240146127b3f7a4 (diff) | |
download | ivy-cplusplus-e18ab55cb4a3605cb44f39e829970f7fbd705107.zip ivy-cplusplus-e18ab55cb4a3605cb44f39e829970f7fbd705107.tar.gz ivy-cplusplus-e18ab55cb4a3605cb44f39e829970f7fbd705107.tar.bz2 ivy-cplusplus-e18ab55cb4a3605cb44f39e829970f7fbd705107.tar.xz |
Utilisateur : Fcolin Date : 23/09/05 Heure : 15:27 Archivé dans $/Bus/Ivy Commentaire: (vss 6)
Diffstat (limited to 'Ivy/Regexp.h')
-rw-r--r-- | Ivy/Regexp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Ivy/Regexp.h b/Ivy/Regexp.h index 3e036d9..b41d88e 100644 --- a/Ivy/Regexp.h +++ b/Ivy/Regexp.h @@ -16,9 +16,9 @@ public: bool Match( const char * s );
int SubStrings() const;
- const ivy::string operator[]( unsigned int i ) const;
- int SubStart( unsigned int i ) const;
- int SubLength( unsigned int i ) const;
+ const ivy::string operator[]( size_t i ) const;
+ size_t SubStart( size_t i ) const;
+ size_t SubLength( size_t i ) const;
ivy::string GetReplaceString( const char * source ) const;
@@ -34,7 +34,7 @@ private: regexp * rc;
void ClearErrorString() const;
- int safeIndex( unsigned int i ) const;
+ size_t safeIndex( size_t i ) const;
};
|