aboutsummaryrefslogtreecommitdiffstats
path: root/gr-soapy
diff options
context:
space:
mode:
authorMarcus Müller <mmueller@gnuradio.org>2021-10-21 13:46:34 +0200
committermormj <34754695+mormj@users.noreply.github.com>2021-10-28 17:23:25 -0400
commitdf767602ecd46f8357a26a8e6131d2abdb2821e0 (patch)
tree05bdb7fac2077bf4b753695d2d6fd9dbffc9b84a /gr-soapy
parentReplace boost::any with std::any (diff)
downloadgnuradio-df767602ecd46f8357a26a8e6131d2abdb2821e0.tar.xz
gnuradio-df767602ecd46f8357a26a8e6131d2abdb2821e0.zip
soapy: clean up includes
Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
Diffstat (limited to 'gr-soapy')
-rw-r--r--gr-soapy/lib/CMakeLists.txt2
-rw-r--r--gr-soapy/lib/block_impl.cc2
2 files changed, 3 insertions, 1 deletions
diff --git a/gr-soapy/lib/CMakeLists.txt b/gr-soapy/lib/CMakeLists.txt
index fd767ab43..cefd8ac3a 100644
--- a/gr-soapy/lib/CMakeLists.txt
+++ b/gr-soapy/lib/CMakeLists.txt
@@ -58,7 +58,7 @@ if(ENABLE_TESTING)
list(APPEND test_soapy_sources)
# Anything we need to link to for the unit tests go here
- list(APPEND GR_TEST_TARGET_DEPS gnuradio-soapy ${Boost_LIBRARIES})
+ list(APPEND GR_TEST_TARGET_DEPS gnuradio-soapy)
if(NOT test_soapy_sources)
MESSAGE(STATUS "No C++ unit tests... skipping")
diff --git a/gr-soapy/lib/block_impl.cc b/gr-soapy/lib/block_impl.cc
index 8ff2b9867..608082df6 100644
--- a/gr-soapy/lib/block_impl.cc
+++ b/gr-soapy/lib/block_impl.cc
@@ -16,7 +16,9 @@
#include <SoapySDR/Formats.h>
#include <SoapySDR/Version.hpp>
#include <boost/format.hpp>
+#include <algorithm>
#include <cmath>
+#include <mutex>
#include <numeric>
namespace gr {