Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4d07453d authored by Josiah Gaskin's avatar Josiah Gaskin
Browse files

Fix String16 operator+ to actually work

This change fixes the String16 utility's operator+ function.

Change-Id: Ibed7b07277b50bf178febc72b6ce497893e66f17
parent d144748d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -183,7 +183,7 @@ inline String16& String16::operator+=(const String16& other)

inline String16 String16::operator+(const String16& other) const
{
    String16 tmp;
    String16 tmp(*this);
    tmp += other;
    return tmp;
}