diff options
Diffstat (limited to 'common/str.cpp')
-rw-r--r-- | common/str.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/str.cpp b/common/str.cpp index 5d051de83f..416b4d828f 100644 --- a/common/str.cpp +++ b/common/str.cpp @@ -25,6 +25,8 @@ namespace Common { +const String String::emptyString; + String::String(const char *str, int len) { _refCount = new int(1); if (str && len != 0) { |