diff options
Diffstat (limited to 'common/ustr.cpp')
-rw-r--r-- | common/ustr.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common/ustr.cpp b/common/ustr.cpp index aab9dd6f05..07a0852a94 100644 --- a/common/ustr.cpp +++ b/common/ustr.cpp @@ -768,4 +768,10 @@ String convertFromU32String(const U32String &string, CodePage page) { return charsetString; } +U32String operator+(const U32String &x, const U32String &y) { + U32String temp(x); + temp += y; + return temp; +} + } // End of namespace Common |