From c2882f7dceab57e4811dec45e8706fc07269e7aa Mon Sep 17 00:00:00 2001 From: Grzegorz Rynkowski Date: Wed, 4 Sep 2013 10:56:19 +0200 Subject: [PATCH] Fix building the package with GCC-4.8 [Problem] The package cannot be built with gcc-4.8. [Cause] Missing #include statement. [Solution] Add the missing #include statement. [Verification] Build package both with current (GCC-4.5) and new (GCC-4.8) version of compiler. Change-Id: Ic462ffa18b7a41983fc4843e78c56645cf4d5d7d --- modules/widget_interface_dao/dao/widget_interface_dao.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/widget_interface_dao/dao/widget_interface_dao.cpp b/modules/widget_interface_dao/dao/widget_interface_dao.cpp index 88e13ac..7bc61b7 100644 --- a/modules/widget_interface_dao/dao/widget_interface_dao.cpp +++ b/modules/widget_interface_dao/dao/widget_interface_dao.cpp @@ -24,6 +24,7 @@ #include #include #include +#include #include #include #include -- 2.7.4