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

Commit 758df637 authored by Chih-hung Hsieh's avatar Chih-hung Hsieh Committed by Gerrit Code Review
Browse files

Merge "Fix bugprone-use-after-move warnings"

parents 17bfa455 1c2234cc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1525,7 +1525,7 @@ void MediaCodecsXmlParser::Impl::generateRoleMap() const {
                nodeInfo.attributeList.push_back(Attribute{"rank", rank});
            }
            nodeList->insert(std::make_pair(
                    std::move(order), std::move(nodeInfo)));
                    order, std::move(nodeInfo)));
        }
    }
}