aboutsummaryrefslogtreecommitdiff
path: root/common/str.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/str.h')
-rw-r--r--common/str.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/str.h b/common/str.h
index b345000164..1e7fa1577b 100644
--- a/common/str.h
+++ b/common/str.h
@@ -45,7 +45,7 @@ public:
#endif
String() : _str(0), _len(0), _capacity(0) { _refCount = new int(1); }
- String(const char *str, int len = -1);
+ String(const char *str, int len = -1, int capacity = 16);
String(const String &str);
virtual ~String();