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

Commit 7b4d8501 authored by Martijn Coenen's avatar Martijn Coenen
Browse files

Fix call to deprecated range_x().

Test: master builds again.
Change-Id: I0fa7627c7ec28317dd7e37cca93d2b2c90e6d1ea
parent bbec302f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -182,7 +182,7 @@ void BM_DisplayListCanvas_basicViewGroupDraw(benchmark::State& benchState) {
        canvas->insertReorderBarrier(true);

        // Draw child loop
        for (int i = 0; i < benchState.range_x(); i++) {
        for (int i = 0; i < benchState.range(0); i++) {
            canvas->drawRenderNode(child.get());
        }