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

Commit ddf155b8 authored by Xavier Ducrohet's avatar Xavier Ducrohet Committed by Android Git Automerger
Browse files

am 5dcda1fd: am 88512f59: am a8313e71: Merge "Fix String16 operator+ to actually work"

* commit '5dcda1fd':
  Fix String16 operator+ to actually work
parents 51beb81a 5dcda1fd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -156,7 +156,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;
}