diff options
author | Marcus Müller <mmueller@gnuradio.org> | 2021-06-17 02:14:17 +0200 |
---|---|---|
committer | Martin Braun <martin@gnuradio.org> | 2021-09-07 06:46:35 -0700 |
commit | 0a7719d70880478ac2e617fff355a6d7fd838bcb (patch) | |
tree | 7683576344a7807203c7875126ab473089ebe766 | |
parent | 8f4a62a4bda2b5305405f6653dc154ac9bfaa45a (diff) |
soapy: include boost/format where used
Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
-rw-r--r-- | gr-soapy/lib/sink_impl.cc | 1 | ||||
-rw-r--r-- | gr-soapy/lib/source_impl.cc | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/gr-soapy/lib/sink_impl.cc b/gr-soapy/lib/sink_impl.cc index 08d68839ce..48b28ef736 100644 --- a/gr-soapy/lib/sink_impl.cc +++ b/gr-soapy/lib/sink_impl.cc @@ -12,6 +12,7 @@ #include "sink_impl.h" #include <SoapySDR/Errors.hpp> +#include <boost/format.hpp> namespace gr { namespace soapy { diff --git a/gr-soapy/lib/source_impl.cc b/gr-soapy/lib/source_impl.cc index f76d4437f9..7a0f101955 100644 --- a/gr-soapy/lib/source_impl.cc +++ b/gr-soapy/lib/source_impl.cc @@ -12,6 +12,7 @@ #include "source_impl.h" #include <SoapySDR/Errors.hpp> +#include <boost/format.hpp> namespace gr { namespace soapy { |