From: Hwankyu Jhun Date: Fri, 21 Apr 2023 00:57:15 +0000 (+0000) Subject: Fix build error for gcc 12.2.0 X-Git-Tag: accepted/tizen/8.0/unified/20231005.093146~5 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fbase%2Fbundle.git;a=commitdiff_plain;h=ccb1a0cf462b4600ea2e279d01532e45c744b2cd Fix build error for gcc 12.2.0 - Add missing header inclusions Change-Id: I6f568b773be1d53845ce8e101e81d390a4af4468 Signed-off-by: Hwankyu Jhun --- diff --git a/src/bundle_cpp.cc b/src/bundle_cpp.cc index 2ced838..c45f405 100644 --- a/src/bundle_cpp.cc +++ b/src/bundle_cpp.cc @@ -15,6 +15,7 @@ */ #include +#include #include "bundle_cpp.h" #include "bundle_cpp_implementation.h" diff --git a/src/stub.cc b/src/stub.cc index 29e11e3..fb4e933 100644 --- a/src/stub.cc +++ b/src/stub.cc @@ -17,6 +17,8 @@ #include #include +#include + #include "include/bundle.h" #include "include/bundle_internal.h" diff --git a/tests/tizen-database_unittests/src/test_database.cc b/tests/tizen-database_unittests/src/test_database.cc index aa89237..395780d 100644 --- a/tests/tizen-database_unittests/src/test_database.cc +++ b/tests/tizen-database_unittests/src/test_database.cc @@ -17,7 +17,9 @@ #include #include + #include +#include #include "tizen-database/database.hpp"