am a8313e71: Merge "Fix String16 operator+ to actually work"
* commit 'a8313e71fe8b483448d14e22610101c5f3672744': Fix String16 operator+ to actually work
This commit is contained in:
@@ -183,7 +183,7 @@ inline String16& String16::operator+=(const String16& other)
|
|||||||
|
|
||||||
inline String16 String16::operator+(const String16& other) const
|
inline String16 String16::operator+(const String16& other) const
|
||||||
{
|
{
|
||||||
String16 tmp;
|
String16 tmp(*this);
|
||||||
tmp += other;
|
tmp += other;
|
||||||
return tmp;
|
return tmp;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user