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

Commit 1101f456 authored by Yi Kong's avatar Yi Kong Committed by Gerrit Code Review
Browse files

Merge "Remove unused lambda captures"

parents 46a4fbb2 b2233821
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -119,7 +119,7 @@ RENDERTHREAD_TEST(BakedOpDispatcher, onLayerOp_bufferless) {
    layerPaint.setAlpha(128);
    OffscreenBuffer* buffer = nullptr; // no providing a buffer, should hit rect fallback case
    LayerOp op(Rect(10, 10), Matrix4::identity(), nullptr, &layerPaint, &buffer);
    testUnmergedGlopDispatch(renderThread, &op, [&renderThread] (const Glop& glop) {
    testUnmergedGlopDispatch(renderThread, &op, [] (const Glop& glop) {
        ADD_FAILURE() << "Nothing should happen";
    }, 0);
}