From 7627b549104ce2dda9c42002181c6a5db56f6939 Mon Sep 17 00:00:00 2001 From: Daniel Zheng Date: Thu, 13 Apr 2023 13:43:17 -0700 Subject: [PATCH] Moving logging include Header file shouldn't have include of logging Test: tested compilation Change-Id: I02cccb66b6ee5811e5d4f2b9b72508fee640e828 --- fastboot/fastboot_driver.h | 1 - fastboot/task.cpp | 7 +++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/fastboot/fastboot_driver.h b/fastboot/fastboot_driver.h index f60c9f1c3..64e3c2b86 100644 --- a/fastboot/fastboot_driver.h +++ b/fastboot/fastboot_driver.h @@ -33,7 +33,6 @@ #include #include -#include #include #include #include diff --git a/fastboot/task.cpp b/fastboot/task.cpp index de48a16de..d43fd8084 100644 --- a/fastboot/task.cpp +++ b/fastboot/task.cpp @@ -14,13 +14,16 @@ // limitations under the License. // #include "task.h" + #include + +#include +#include + #include "fastboot.h" #include "filesystem.h" #include "super_flash_helper.h" -#include - using namespace std::string_literals; FlashTask::FlashTask(const std::string& _slot, const std::string& _pname, const std::string& _fname, const bool apply_vbmeta)