summaryrefslogtreecommitdiff
path: root/gr-fec/lib/cc_decoder_impl.cc
diff options
context:
space:
mode:
authorMarcus Müller <mmueller@gnuradio.org>2021-06-17 11:16:12 +0200
committermormj <34754695+mormj@users.noreply.github.com>2021-06-22 09:35:48 -0400
commit54ff6375bdec9fc2c202604fa648784f486d0433 (patch)
tree30f71d80f92eca02bd5de3633e6e31fc25ae3e66 /gr-fec/lib/cc_decoder_impl.cc
parent0ec5f84c806981f60a231cac9a93105a6d160a88 (diff)
global: remove boost/assign/list_of, obsoleted by C++11
Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
Diffstat (limited to 'gr-fec/lib/cc_decoder_impl.cc')
-rw-r--r--gr-fec/lib/cc_decoder_impl.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/gr-fec/lib/cc_decoder_impl.cc b/gr-fec/lib/cc_decoder_impl.cc
index ee9c757cea..dcc3b6e979 100644
--- a/gr-fec/lib/cc_decoder_impl.cc
+++ b/gr-fec/lib/cc_decoder_impl.cc
@@ -14,7 +14,6 @@
#include "cc_decoder_impl.h"
#include <volk/volk.h>
-#include <boost/assign/list_of.hpp>
#include <cmath>
#include <cstdio>
#include <sstream>
@@ -119,8 +118,8 @@ cc_decoder_impl::cc_decoder_impl(int frame_size,
d_SUBSHIFT = 0;
}
- std::map<std::string, conv_kernel> yp_kernel =
- boost::assign::map_list_of("k=7r=2", volk_8u_x4_conv_k7_r2_8u);
+ std::map<std::string, conv_kernel> yp_kernel = { { "k=7r=2",
+ volk_8u_x4_conv_k7_r2_8u } };
std::string k_ = "k=";
std::string r_ = "r=";