diff options
author | Thomas Habets <thomas@habets.se> | 2019-11-08 20:21:30 +0000 |
---|---|---|
committer | Michael Dickens <michael.dickens@ettus.com> | 2019-12-04 10:13:22 -0500 |
commit | 1b85d1a7875c8ae3491009225e5134ca5734ca2e (patch) | |
tree | 58d7431551e0914c9ea76ba6952ecedca340747c /gr-blocks/lib/file_meta_sink_impl.cc | |
parent | 25cb814aef1f8b89fd4fcf6e7577e18b0807474b (diff) |
Use C++11 ranged for and ranged insert instead of manual loops
Diffstat (limited to 'gr-blocks/lib/file_meta_sink_impl.cc')
-rw-r--r-- | gr-blocks/lib/file_meta_sink_impl.cc | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gr-blocks/lib/file_meta_sink_impl.cc b/gr-blocks/lib/file_meta_sink_impl.cc index ed75f135c9..e3ce72db97 100644 --- a/gr-blocks/lib/file_meta_sink_impl.cc +++ b/gr-blocks/lib/file_meta_sink_impl.cc @@ -391,9 +391,8 @@ int file_meta_sink_impl::work(int noutput_items, std::vector<tag_t> all_tags; get_tags_in_range(all_tags, 0, abs_N, end_N); - std::vector<tag_t>::iterator itr; - for (itr = all_tags.begin(); itr != all_tags.end(); itr++) { - int item_offset = (int)(itr->offset - abs_N); + for (const auto& tag : all_tags) { + int item_offset = (int)(tag.offset - abs_N); // Write date to file up to the next tag location while (nwritten < item_offset) { @@ -419,11 +418,11 @@ int file_meta_sink_impl::work(int noutput_items, if (d_total_seg_size > 0) { update_last_header(); - update_header(itr->key, itr->value); + update_header(tag.key, tag.value); write_and_update(); d_total_seg_size = 0; } else { - update_header(itr->key, itr->value); + update_header(tag.key, tag.value); update_last_header(); } } |