From cf8c8ed16925ecaed7eabba1351bd291a491a1d4 Mon Sep 17 00:00:00 2001 From: Thomas Roberts Date: Tue, 18 Jan 2022 14:14:51 +0000 Subject: [PATCH] Satisfy a boost pragma message regarding boost bind placeholders This commit updates comm.cpp bind header to boost/bind/bind.hpp. This resolves a pragma message from boost when compiling. The async-comm library didn't bring the namespace boost::placeholders into the global namespace as result further changes were not required. Refer to https://www.boost.org/doc/libs/1_73_0/boost/bind.hpp --- src/comm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/comm.cpp b/src/comm.cpp index be69c0a..e16b017 100644 --- a/src/comm.cpp +++ b/src/comm.cpp @@ -38,7 +38,7 @@ #include #include -#include +#include namespace async_comm {