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

Commit 71831a63 authored by Dan Austin's avatar Dan Austin
Browse files

Address const issues in preparation for libcxx rebase.

Change-Id: Ia9edf466ab4d1b6cc3f6c6ed86b333e6521c528d
parent 72dd79fa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -126,7 +126,7 @@ public:

    void setName(const char* name) {
        if (name) {
            char* lastPeriod = strrchr(name, '.');
            const char* lastPeriod = strrchr(name, '.');
            if (lastPeriod) {
                mName.setTo(lastPeriod + 1);
            } else {