X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Frowdata.cpp;h=c8d68df6cb317a1bcdefd778bee970bf4b1f0e29;hp=e7d82fd72c5a77713980f1f7e6c69b714a4c59cb;hb=27c0521002ea986b72d9675b99803665516db14c;hpb=744aa24fc5a7084461e4e70595b96f1c3eac65e4 diff --git a/pv/data/decode/rowdata.cpp b/pv/data/decode/rowdata.cpp index e7d82fd..c8d68df 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);