diff options
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); |