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

Commit e5524c06 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Fix -Wunused-variable compiler warning" into main

parents 2f56ec93 90f6cb4b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -354,7 +354,7 @@ TEST_F(ParseTest, OptimizedFlashSuperPatternMatchTest) {
                                const std::vector<std::unique_ptr<Task>>& tasks) {
            bool contains_optimized_task = false;
            for (auto& task : tasks) {
                if (auto optimized_task = task->AsOptimizedFlashSuperTask()) {
                if (task->AsOptimizedFlashSuperTask()) {
                    contains_optimized_task = true;
                }
                if (auto flash_task = task->AsFlashTask()) {