aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2020-04-29 10:17:52 +0200
committerJosé Bollo <jose.bollo@iot.bzh>2020-05-06 13:40:40 +0200
commit33ddfb569b0fb223e212408ab3994bdae70861d7 (patch)
tree2c64a5b440d131ea04801e810cf67968ceef09b0
parent7901c6dadaceb37638ab98876e759c4d6f3ea130 (diff)
Fix includes of C++ headerjellyfish_9.99.1jellyfish/9.99.19.99.1
The include of <string> was missing in the C++ header. This produced errors on some builds. Bug-AGL: SPEC-3358 Signed-off-by: José Bollo <jose.bollo@iot.bzh> Change-Id: I928e8ab267d27710177a7a314ea8b8cdfa83e2f3
-rw-r--r--include/afb/c++/binding-wrap.hpp1
1 files changed, 1 insertions, 0 deletions
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 <cstdlib>
#include <cstdarg>
#include <functional>
+#include <string>
/* ensure version */
#ifndef AFB_BINDING_VERSION