X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Frowdata.cpp;h=c8d68df6cb317a1bcdefd778bee970bf4b1f0e29;hp=b4ccd64d087cb882a4819618a4e30f0ca9ca1593;hb=27c0521002ea986b72d9675b99803665516db14c;hpb=8dbbc7f0b9ea59d0f0d62225772f8a56eee125f5 diff --git a/pv/data/decode/rowdata.cpp b/pv/data/decode/rowdata.cpp index b4ccd64d..c8d68df6 100644 --- a/pv/data/decode/rowdata.cpp +++ b/pv/data/decode/rowdata.cpp @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "rowdata.h" +#include "rowdata.hpp" using std::vector; @@ -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)