From 0897526557e66dbb74523d67c314c4f72affb7f8 Mon Sep 17 00:00:00 2001 From: Daniel Zheng Date: Mon, 17 Apr 2023 11:34:00 -0700 Subject: [PATCH] Fixing circular dependency Test: tested compilation Change-Id: Iae25cade1efb2372e5fc219fa69cbb2381b4e05c --- fastboot/task.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/fastboot/task.h b/fastboot/task.h index e80f88de2..801a0f6bf 100644 --- a/fastboot/task.h +++ b/fastboot/task.h @@ -18,11 +18,14 @@ #include #include -#include "fastboot.h" #include "fastboot_driver.h" #include "super_flash_helper.h" #include "util.h" +struct FlashingPlan; +struct Image; +using ImageEntry = std::pair; + class Task { public: Task() = default;