summaryrefslogtreecommitdiff
path: root/Ivy
diff options
context:
space:
mode:
authorfcolin2007-02-01 13:04:38 +0000
committerfcolin2007-02-01 13:04:38 +0000
commit00a296093ba62e3fcabc50a23f864424a8ca5af2 (patch)
tree6b12f815ba3a61cf45eed9aec3988433f4736a9a /Ivy
parent3f3f2e621789c3c65eb10d3ee937c047c5a46857 (diff)
downloadivy-cplusplus-00a296093ba62e3fcabc50a23f864424a8ca5af2.zip
ivy-cplusplus-00a296093ba62e3fcabc50a23f864424a8ca5af2.tar.gz
ivy-cplusplus-00a296093ba62e3fcabc50a23f864424a8ca5af2.tar.bz2
ivy-cplusplus-00a296093ba62e3fcabc50a23f864424a8ca5af2.tar.xz
Utilisateur : Fcolin Date : 23/01/01 Heure : 13:12 Archivé dans $/Ivy Commentaire: remove 'using name space std;' (vss 2)
Diffstat (limited to 'Ivy')
-rw-r--r--Ivy/Regexp.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Ivy/Regexp.h b/Ivy/Regexp.h
index 22e2699..3265561 100644
--- a/Ivy/Regexp.h
+++ b/Ivy/Regexp.h
@@ -18,13 +18,13 @@ public:
bool Match( const char * s );
int SubStrings() const;
- const string operator[]( unsigned int i ) const;
+ const String operator[]( unsigned int i ) const;
int SubStart( unsigned int i ) const;
int SubLength( unsigned int i ) const;
- string GetReplaceString( const char * source ) const;
+ String GetReplaceString( const char * source ) const;
- string GetErrorString() const;
+ String GetErrorString() const;
bool CompiledOK() const;
#if defined( _RE_DEBUG )
@@ -32,7 +32,7 @@ public:
#endif
private:
const char * str; /* used to return substring offsets only */
- mutable string m_szError;
+ mutable String m_szError;
regexp * rc;
void ClearErrorString() const;