From eb5d5bdc95d4e2bee6cf6c98057fc9c630e797ef Mon Sep 17 00:00:00 2001 From: wchang kim Date: Mon, 3 Jul 2023 11:19:50 +0900 Subject: [PATCH] Fixed the build error using gcc 13 Change-Id: I6b358640aee2e4f31909b6fbd1577bb159ffa205 --- src/server/JobInfoDatabase.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/server/JobInfoDatabase.cpp b/src/server/JobInfoDatabase.cpp index e763ce3..a02e519 100644 --- a/src/server/JobInfoDatabase.cpp +++ b/src/server/JobInfoDatabase.cpp @@ -13,11 +13,13 @@ * See the License for the specific language governing permissions and * limitations under the License. */ +#include "JobInfoDatabase.h" #include #include #include -#include "JobInfoDatabase.h" + +#include #define DB_NAME "context-job-scheduler" #define JOB_INFO_TABLE "PersistentJobInfo" -- 2.34.1