diff options
author | Marcus Müller <marcus@hostalia.de> | 2017-06-24 17:43:22 +0200 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2017-06-24 17:44:53 +0200 |
commit | 963c376ba23fbcb7c4041b8ce5ff1d30b33af36e (patch) | |
tree | a2393332a049616d240323d236abba203627ce66 /gr-blocks/lib/multiply_matrix_ff_impl.h | |
parent | b57a37f7c676542f08a27d3f141f4d9ed2ab1132 (diff) |
fix: can't pass non-enum integer as enum parameter (#1337)
Diffstat (limited to 'gr-blocks/lib/multiply_matrix_ff_impl.h')
-rw-r--r-- | gr-blocks/lib/multiply_matrix_ff_impl.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gr-blocks/lib/multiply_matrix_ff_impl.h b/gr-blocks/lib/multiply_matrix_ff_impl.h index c9476bc8d1..93b2bebadd 100644 --- a/gr-blocks/lib/multiply_matrix_ff_impl.h +++ b/gr-blocks/lib/multiply_matrix_ff_impl.h @@ -1,6 +1,6 @@ /* -*- c++ -*- */ /* - * Copyright 2014 Free Software Foundation, Inc. + * Copyright 2014, 2017 Free Software Foundation, Inc. * * This file is part of GNU Radio * @@ -32,7 +32,6 @@ namespace gr { { private: std::vector<std::vector<float> > d_A; - bool d_tag_prop_select; //!< If true, handle the tag propagation ourselves void propagate_tags_by_A(int noutput_items, size_t ninput_ports, size_t noutput_ports); @@ -45,8 +44,6 @@ namespace gr { const std::vector<std::vector<float> >& get_A() const { return d_A; }; bool set_A(const std::vector<std::vector<float> > &new_A); - void set_tag_propagation_policy(gr::block::tag_propagation_policy_t p); - int work(int noutput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items); |