diff options
author | Johannes Demel <ufcsy@student.kit.edu> | 2018-02-18 23:00:57 +0100 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2018-02-19 18:02:58 +0100 |
commit | 76f8abeb0e88ff4063909f0f502cf7cfe22e5640 (patch) | |
tree | 241f2f240afa71ef25472e0f3db2a755a611c1e0 | |
parent | b52726077244d2b8439c663144e5f013fa3d8557 (diff) |
blocks: remove unused class member
In gr-blocks/annotator_alltoall.[h/cc]: class member d_itemsize was unused. Thus, it was removed as part of code clean-up.
-rw-r--r-- | gr-blocks/lib/annotator_alltoall_impl.cc | 2 | ||||
-rw-r--r-- | gr-blocks/lib/annotator_alltoall_impl.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/gr-blocks/lib/annotator_alltoall_impl.cc b/gr-blocks/lib/annotator_alltoall_impl.cc index cedf8dd44f..afc60d0acb 100644 --- a/gr-blocks/lib/annotator_alltoall_impl.cc +++ b/gr-blocks/lib/annotator_alltoall_impl.cc @@ -45,7 +45,7 @@ namespace gr { : sync_block("annotator_alltoall", io_signature::make(1, -1, sizeof_stream_item), io_signature::make(1, -1, sizeof_stream_item)), - d_itemsize(sizeof_stream_item), d_when((uint64_t)when) + d_when((uint64_t)when) { set_tag_propagation_policy(TPP_ALL_TO_ALL); diff --git a/gr-blocks/lib/annotator_alltoall_impl.h b/gr-blocks/lib/annotator_alltoall_impl.h index 81b73a8972..cdd5c88e62 100644 --- a/gr-blocks/lib/annotator_alltoall_impl.h +++ b/gr-blocks/lib/annotator_alltoall_impl.h @@ -31,7 +31,6 @@ namespace gr { class annotator_alltoall_impl : public annotator_alltoall { private: - size_t d_itemsize; uint64_t d_when; uint64_t d_tag_counter; std::vector<tag_t> d_stored_tags; |