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

Commit 9f4d9d14 authored by Xavier Ducrohet's avatar Xavier Ducrohet Committed by Android Code Review
Browse files

Merge "Fix String16 operator+ to actually work"

parents 96fe23ed 37bf88e5
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -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;
}
}