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

Commit b2233821 authored by Yi Kong's avatar Yi Kong
Browse files

Remove unused lambda captures

Test: build
Bug: 37752547
Change-Id: Id102e93fef06e9c818b27fa8a5c6218c319bdd30
parent 52bc790f
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);
}