From 54ff6375bdec9fc2c202604fa648784f486d0433 Mon Sep 17 00:00:00 2001 From: Marcus Müller <mmueller@gnuradio.org> Date: Thu, 17 Jun 2021 11:16:12 +0200 Subject: global: remove boost/assign/list_of, obsoleted by C++11 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marcus Müller <mmueller@gnuradio.org> --- gr-fec/lib/cc_decoder_impl.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'gr-fec/lib/cc_decoder_impl.cc') 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="; -- cgit v1.2.3