From b6b77e1d5a2d73b33705ed35d647acb00b3f73ae Mon Sep 17 00:00:00 2001 From: Ricardo Simoes Date: Mon, 26 Aug 2024 16:16:44 +0200 Subject: [PATCH] src/meta-openembedded:directfb: Fix C++17 build warning DirectFB explicitly supports usage of C++. With C++17 and later the below warning is given: lib/direct/util.h:223:19: warning: ISO C++17 does not allow 'register' storage class specifier [-Wregister] 223 | register int ret = 0; | ^~~ To address that, this commit brings in the patch proposed by PR which removes the usage of the register keyword: https://github.com/deniskropp/DirectFB/pull/25 Signed-off-by: Ricardo Simoes Signed-off-by: Mark Jonas Signed-off-by: Khem Raj --- src/meta-openembedded | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meta-openembedded b/src/meta-openembedded index 3f825482d33..a4cad069d2c 160000 --- a/src/meta-openembedded +++ b/src/meta-openembedded @@ -1 +1 @@ -Subproject commit 3f825482d339d66f03b1578cc4cc1d75da7b439c +Subproject commit a4cad069d2c036f9e6ef07e57bb35d91008d1ff7