X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Frowdata.cpp;h=e7d82fd72c5a77713980f1f7e6c69b714a4c59cb;hp=9402e707503e63772c9c18a39d5ea98415ed433e;hb=da50281d69f15d125b56971a3009fd31cbbab58b;hpb=f74015db20c1ac85df6397df7199a030e6db828f diff --git a/pv/data/decode/rowdata.cpp b/pv/data/decode/rowdata.cpp index 9402e707..e7d82fd7 100644 --- a/pv/data/decode/rowdata.cpp +++ b/pv/data/decode/rowdata.cpp @@ -41,10 +41,10 @@ void RowData::get_annotation_subset( vector &dest, uint64_t start_sample, uint64_t end_sample) const { - for (auto i = annotations_.cbegin(); i != annotations_.cend(); i++) - if ((*i).end_sample() > start_sample && - (*i).start_sample() <= end_sample) - dest.push_back(*i); + for (const auto & annotation : annotations_) + if (annotation.end_sample() > start_sample && + annotation.start_sample() <= end_sample) + dest.push_back(annotation); } void RowData::push_annotation(const Annotation &a)