summaryrefslogtreecommitdiff
path: root/include/String.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/String.h')
-rw-r--r--include/String.h4
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;
};