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

Commit 170c93f5 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

* commit '64ade5dc':
  Address const issues in preparation for libcxx rebase.
parents 256c15af 64ade5dc
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 {