diff options
author | fcolin | 2007-02-01 13:04:46 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 13:04:46 +0000 |
commit | 15357f594fdd0cafef79950a3d9cef56e8e24173 (patch) | |
tree | ea595b9653dd37870892089336327288727aaadc /Bus/Ivy | |
parent | 49cffa2f5b76317d649cf375d74c812114b405c3 (diff) | |
download | ivy-cplusplus-15357f594fdd0cafef79950a3d9cef56e8e24173.zip ivy-cplusplus-15357f594fdd0cafef79950a3d9cef56e8e24173.tar.gz ivy-cplusplus-15357f594fdd0cafef79950a3d9cef56e8e24173.tar.bz2 ivy-cplusplus-15357f594fdd0cafef79950a3d9cef56e8e24173.tar.xz |
Utilisateur : Fcolin Date : 23/09/05 Heure : 15:27 Archivé dans $/Bus/Ivy Commentaire: (vss 6)
Diffstat (limited to 'Bus/Ivy')
-rw-r--r-- | Bus/Ivy/Regexp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Bus/Ivy/Regexp.h b/Bus/Ivy/Regexp.h index 3e036d9..b41d88e 100644 --- a/Bus/Ivy/Regexp.h +++ b/Bus/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;
};
|