diff options
author | José Bollo <jose.bollo@iot.bzh> | 2020-04-29 10:17:52 +0200 |
---|---|---|
committer | José Bollo <jose.bollo@iot.bzh> | 2020-05-07 15:17:39 +0200 |
commit | 68de5060b26f00546b97c7664cc6406f3b67c33d (patch) | |
tree | 61893604351e8bde2697808cb710ff11016267e7 | |
parent | b15edc1c48d74f2ad6e9ade577bf6b4945d85eee (diff) |
Fix includes of C++ headericefish_9.0.4icefish_9.0.3icefish_9.0.2icefish/9.0.4icefish/9.0.3icefish/9.0.29.0.49.0.39.0.2icefish
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.hpp | 1 |
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 |