X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=pv%2Fdata%2Fdecode%2Frowdata.cpp;fp=pv%2Fdata%2Fdecode%2Frowdata.cpp;h=c8d68df6cb317a1bcdefd778bee970bf4b1f0e29;hb=27c0521002ea986b72d9675b99803665516db14c;hp=e7d82fd72c5a77713980f1f7e6c69b714a4c59cb;hpb=744aa24fc5a7084461e4e70595b96f1c3eac65e4;p=pulseview.git diff --git a/pv/data/decode/rowdata.cpp b/pv/data/decode/rowdata.cpp index e7d82fd7..c8d68df6 100644 --- a/pv/data/decode/rowdata.cpp +++ b/pv/data/decode/rowdata.cpp @@ -41,7 +41,7 @@ void RowData::get_annotation_subset( vector &dest, uint64_t start_sample, uint64_t end_sample) const { - for (const auto & annotation : annotations_) + for (const auto& annotation : annotations_) if (annotation.end_sample() > start_sample && annotation.start_sample() <= end_sample) dest.push_back(annotation);