X-Git-Url: http://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Frowdata.cpp;h=83074e00d566c290ff0a3dafa2b8a8288671de00;hb=efdec55aec1a137460fa362a381ed1904182bfed;hp=9402e707503e63772c9c18a39d5ea98415ed433e;hpb=2acdb232d6bb452cfdfaea3ef5218fb4da592329;p=pulseview.git diff --git a/pv/data/decode/rowdata.cpp b/pv/data/decode/rowdata.cpp index 9402e707..83074e00 100644 --- a/pv/data/decode/rowdata.cpp +++ b/pv/data/decode/rowdata.cpp @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #include "rowdata.hpp" @@ -41,10 +40,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)