diff options
author | Michael Dickens <michael.dickens@ettus.com> | 2015-04-02 15:01:46 -0400 |
---|---|---|
committer | Michael Dickens <michael.dickens@ettus.com> | 2015-04-02 15:01:46 -0400 |
commit | 4f5211f016af30428ef6b40bc35c09f5e54ecd64 (patch) | |
tree | 10de90e6da057e3257fa0bf94bcebc0acab70c55 /gr-fec/lib/cc_decoder_impl.h | |
parent | 225c6b33730b8812ba82cbc93884aef7edcaad1c (diff) |
fec: Move the definition of yp_kernel from the class into a temp variable in the main code. This variable is used just to find the actual Volk kernel, and its current use is not c++11 complaint. Moving it makes the code c++11 complaint on both GCC / libstdc++ and Clang / libc++.
Diffstat (limited to 'gr-fec/lib/cc_decoder_impl.h')
-rw-r--r-- | gr-fec/lib/cc_decoder_impl.h | 1 |
1 files changed, 0 insertions, 1 deletions
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, |