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

Commit 5c0e63c0 authored by Leon Scroggins's avatar Leon Scroggins Committed by Android (Google) Code Review
Browse files

Merge "graphics: Remove unnecessary std::move" into main

parents 248fee9e 2c5a8716
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -249,8 +249,7 @@ class ComposerClientReader {
        auto& data = mReturnData[displayLuts.display];
        for (auto& lut : displayLuts.luts) {
            if (lut.pfd.get() >= 0) {
                data.luts.push_back({lut.layer,
                                     std::move(ndk::ScopedFileDescriptor(lut.pfd.release())),
                data.luts.push_back({lut.layer, ndk::ScopedFileDescriptor(lut.pfd.release()),
                                     lut.lutProperties});
            }
        }