diff options
author | pixel <pixel> | 2002-12-01 16:09:10 +0000 |
---|---|---|
committer | pixel <pixel> | 2002-12-01 16:09:10 +0000 |
commit | 2b47237b6fc07afb5c5a30b484283c69865a24b6 (patch) | |
tree | 7d14ec7c1ead967c9c9d8cf3f7886ae04df72a73 /include/String.h | |
parent | ed0ed93bc9a64412c04a73938b04079cad95c4af (diff) |
Syncinc...
Diffstat (limited to 'include/String.h')
-rw-r--r-- | include/String.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/String.h b/include/String.h index 27a7f2c..72fc135 100644 --- a/include/String.h +++ b/include/String.h @@ -57,9 +57,9 @@ class String : public Base { String & tolower(); private: - String(int hs, const char *); + String(int hs, char *); static char t[]; - char * str; + char * str, * ostr; size_t siz; }; |