Fix -Wunused-variable compiler warning
Test: presubmit Change-Id: Ia6d0a735c94c7be39994fb9c8ae4d3b65d6f4301
This commit is contained in:
parent
2f56ec931a
commit
90f6cb4b2c
1 changed files with 1 additions and 1 deletions
|
@ -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()) {
|
||||
|
|
Loading…
Reference in a new issue