bindings: cxx: examples: add missing include
authorSZ Lin (林上智) <sz.lin@moxa.com>
Wed, 26 Sep 2018 09:47:10 +0000 (17:47 +0800)
committerBartosz Golaszewski <bartekgola@gmail.com>
Sun, 7 Oct 2018 07:29:48 +0000 (09:29 +0200)
This patch adds proper include file to fix FTBFS issue in
gpiod_cxx_tests.cpp, please see below error.

gpiod_cxx_tests.cpp:29:19: note: 'std::function' is defined in header '<functional>'; did you forget to '#include <functional>'?
gpiod_cxx_tests.cpp:26:1:
+#include <functional>

Signed-off-by: SZ Lin (林上智) <sz.lin@moxa.com>
[Bartosz: tweaked the commit message]
Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com>
bindings/cxx/examples/gpiod_cxx_tests.cpp

index df4820b3d96ed6dc1d2d761ca608f192b14f8410..767fe989bf9733cc7489987f3e4147b07775bae7 100644 (file)
@@ -21,6 +21,7 @@
 #include <map>
 #include <cstring>
 #include <cerrno>
+#include <functional>
 
 #include <poll.h>