summaryrefslogtreecommitdiff
path: root/gr-blocks/lib/annotator_alltoall_impl.cc
diff options
context:
space:
mode:
authorThomas Habets <thomas@habets.se>2019-11-08 20:21:30 +0000
committerMichael Dickens <michael.dickens@ettus.com>2019-12-04 10:13:22 -0500
commit1b85d1a7875c8ae3491009225e5134ca5734ca2e (patch)
tree58d7431551e0914c9ea76ba6952ecedca340747c /gr-blocks/lib/annotator_alltoall_impl.cc
parent25cb814aef1f8b89fd4fcf6e7577e18b0807474b (diff)
Use C++11 ranged for and ranged insert instead of manual loops
Diffstat (limited to 'gr-blocks/lib/annotator_alltoall_impl.cc')
-rw-r--r--gr-blocks/lib/annotator_alltoall_impl.cc6
1 files changed, 1 insertions, 5 deletions
diff --git a/gr-blocks/lib/annotator_alltoall_impl.cc b/gr-blocks/lib/annotator_alltoall_impl.cc
index 7bb5723450..c257c0cb9f 100644
--- a/gr-blocks/lib/annotator_alltoall_impl.cc
+++ b/gr-blocks/lib/annotator_alltoall_impl.cc
@@ -70,11 +70,7 @@ int annotator_alltoall_impl::work(int noutput_items,
std::vector<tag_t> all_tags;
get_tags_in_range(all_tags, i, abs_N, end_N);
-
- std::vector<tag_t>::iterator itr;
- for (itr = all_tags.begin(); itr != all_tags.end(); itr++) {
- d_stored_tags.push_back(*itr);
- }
+ d_stored_tags.insert(d_stored_tags.end(), all_tags.begin(), all_tags.end());
}
// Source ID and key for any tag that might get applied from this block