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

Commit f110ea48 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix unnecessary copy initialization warnings"

parents 314f9503 09188088
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -258,7 +258,7 @@ status_t VendorTagDescriptor::createDescriptorFromOps(const vendor_tag_ops_t* vO


    for (size_t i = 0; i < static_cast<size_t>(tagCount); ++i) {
    for (size_t i = 0; i < static_cast<size_t>(tagCount); ++i) {
        uint32_t tag = tagArray[i];
        uint32_t tag = tagArray[i];
        String8 sectionString = tagToSectionMap.valueFor(tag);
        const String8& sectionString = tagToSectionMap.valueFor(tag);


        // Set up tag to section index map
        // Set up tag to section index map
        ssize_t index = sections.indexOf(sectionString);
        ssize_t index = sections.indexOf(sectionString);