summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gr-fec/lib/cc_decoder_impl.cc2
-rw-r--r--gr-fec/lib/cc_decoder_impl.h1
2 files changed, 1 insertions, 2 deletions
diff --git a/gr-fec/lib/cc_decoder_impl.cc b/gr-fec/lib/cc_decoder_impl.cc
index 20587a21ae..be505e2f8e 100644
--- a/gr-fec/lib/cc_decoder_impl.cc
+++ b/gr-fec/lib/cc_decoder_impl.cc
@@ -147,7 +147,7 @@ namespace gr {
d_SUBSHIFT = 0;
}
- 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 = boost::assign::map_list_of("k=7r=2", volk_8u_x4_conv_k7_r2_8u);
std::string k_ = "k=";
std::string r_ = "r=";
diff --git a/gr-fec/lib/cc_decoder_impl.h b/gr-fec/lib/cc_decoder_impl.h
index 33ced0250c..643f4b8717 100644
--- a/gr-fec/lib/cc_decoder_impl.h
+++ b/gr-fec/lib/cc_decoder_impl.h
@@ -85,7 +85,6 @@ namespace gr {
int parity(int x);
int parityb(unsigned char x);
void partab_init(void);
- std::map<std::string, conv_kernel> yp_kernel;
public:
cc_decoder_impl(int frame_size, int k,