Fix build error for gcc 12.2.0 50/291750/1
authorHwankyu Jhun <h.jhun@samsung.com>
Fri, 21 Apr 2023 00:57:15 +0000 (00:57 +0000)
committerHwankyu Jhun <h.jhun@samsung.com>
Fri, 21 Apr 2023 00:57:15 +0000 (00:57 +0000)
- Add missing header inclusions

Change-Id: I6f568b773be1d53845ce8e101e81d390a4af4468
Signed-off-by: Hwankyu Jhun <h.jhun@samsung.com>
src/bundle_cpp.cc
src/stub.cc
tests/tizen-database_unittests/src/test_database.cc

index 2ced838..c45f405 100644 (file)
@@ -15,6 +15,7 @@
  */
 
 #include <memory>
+#include <stdexcept>
 
 #include "bundle_cpp.h"
 #include "bundle_cpp_implementation.h"
index 29e11e3..fb4e933 100644 (file)
@@ -17,6 +17,8 @@
 #include <tizen.h>
 #include <glib.h>
 
+#include <stdexcept>
+
 #include "include/bundle.h"
 #include "include/bundle_internal.h"
 
index aa89237..395780d 100644 (file)
@@ -17,7 +17,9 @@
 
 #include <gtest/gtest.h>
 #include <gmock/gmock.h>
+
 #include <iostream>
+#include <vector>
 
 #include "tizen-database/database.hpp"