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

Commit 62c01e37 authored by Dan Austin's avatar Dan Austin Committed by android-build-merger
Browse files

Merge "Address const issues in preparation for libcxx rebase." am: 64ade5dc

am: 170c93f5

* commit '170c93f5':
  Address const issues in preparation for libcxx rebase.
parents ee93672b 170c93f5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -145,7 +145,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 {