From 89cb7caeee259ddffbd13f5151d18e324d0af001 Mon Sep 17 00:00:00 2001 From: Hwankyu Jhun Date: Fri, 21 Apr 2023 01:06:28 +0000 Subject: [PATCH] Fix build error for gcc 12.2.0 - Add missing header inclusion Change-Id: I69ec7428e75783d4d96912d79582b3b113097b6b Signed-off-by: Hwankyu Jhun --- src/app_device.cc | 2 ++ src/app_main.cc | 1 + 2 files changed, 3 insertions(+) diff --git a/src/app_device.cc b/src/app_device.cc index 0a4f322..5a430b3 100644 --- a/src/app_device.cc +++ b/src/app_device.cc @@ -14,6 +14,8 @@ * limitations under the License. */ +#include + #include #include "app_internal.h" diff --git a/src/app_main.cc b/src/app_main.cc index 8935d0a..f1c92da 100644 --- a/src/app_main.cc +++ b/src/app_main.cc @@ -24,6 +24,7 @@ #include #include +#include #include "app_internal.h" #include "common_private.hh" -- 2.7.4