From 8f792e40a5b64dabfa4b51b036e94d19ed312643 Mon Sep 17 00:00:00 2001 From: José Bollo Date: Thu, 13 Jul 2017 12:02:45 +0200 Subject: af-binder: Fix const issue in afb-auth.h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The fields type and loa were declared as const. This worked well for C compilers that are allowing to initialize constant fixed structures. But when compiling with C++, it is no more easy to create initialized structure explicitely. In C++, the solution is to use C++14 constexpr functions. But for using these function, const must be removed. Bug-AGL: SPEC-741 Change-Id: If5aca00e79dc074dcd1f6bac81a57d85b8537cea Signed-off-by: José Bollo Reviewed-on: https://gerrit.automotivelinux.org/gerrit/10197 Tested-by: Jenkins Job builder account ci-image-build: Jenkins Job builder account ci-image-boot-test: Jenkins Job builder account Reviewed-by: Matt Ranostay Reviewed-by: Jan-Simon Moeller Reviewed-by: Changhyeok Bae --- meta-app-framework/recipes-core/af-binder/af-binder_1.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-app-framework/recipes-core') diff --git a/meta-app-framework/recipes-core/af-binder/af-binder_1.0.bb b/meta-app-framework/recipes-core/af-binder/af-binder_1.0.bb index c0e2a1278..dbde967da 100644 --- a/meta-app-framework/recipes-core/af-binder/af-binder_1.0.bb +++ b/meta-app-framework/recipes-core/af-binder/af-binder_1.0.bb @@ -15,7 +15,7 @@ SRC_URI = "${SRC_URI_git} \ ${SRC_URI_files} \ " -SRCREV = "4e72c3a2a4e550f99430d1f37a8ef693d2daa8c3" +SRCREV = "b2a1f5f40ec0663d57a18f97e04d1ce4901af468" PV = "dab+git${SRCPV}" S = "${WORKDIR}/git" -- cgit 1.2.3-korg