From 33ddfb569b0fb223e212408ab3994bdae70861d7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jos=C3=A9=20Bollo?= Date: Wed, 29 Apr 2020 10:17:52 +0200 Subject: [PATCH] Fix includes of C++ header MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The include of was missing in the C++ header. This produced errors on some builds. Bug-AGL: SPEC-3358 Signed-off-by: José Bollo Change-Id: I928e8ab267d27710177a7a314ea8b8cdfa83e2f3 --- include/afb/c++/binding-wrap.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/afb/c++/binding-wrap.hpp b/include/afb/c++/binding-wrap.hpp index 9844a070..f94d1bc5 100644 --- a/include/afb/c++/binding-wrap.hpp +++ b/include/afb/c++/binding-wrap.hpp @@ -21,6 +21,7 @@ #include #include #include +#include /* ensure version */ #ifndef AFB_BINDING_VERSION -- 2.16.6