Merge "Fix -Wunused-variable compiler warning" into main am: e5524c0669
Original change: https://android-review.googlesource.com/c/platform/system/core/+/2861269 Change-Id: I138028e89f57b269cca84b18f1243da169a93d5e Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
commit
fc6126d3ac
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…
Add table
Reference in a new issue