X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Frowdata.cpp;h=aff4a26b333b68b2672af073c87b8ad5c392d406;hb=1becee23bdd2b44145b753edd05bf01f7fb0707e;hp=83074e00d566c290ff0a3dafa2b8a8288671de00;hpb=efdec55aec1a137460fa362a381ed1904182bfed;p=pulseview.git diff --git a/pv/data/decode/rowdata.cpp b/pv/data/decode/rowdata.cpp index 83074e0..aff4a26 100644 --- a/pv/data/decode/rowdata.cpp +++ b/pv/data/decode/rowdata.cpp @@ -25,10 +25,6 @@ namespace pv { namespace data { namespace decode { -RowData::RowData() -{ -} - uint64_t RowData::get_max_sample() const { if (annotations_.empty()) @@ -46,11 +42,11 @@ void RowData::get_annotation_subset( dest.push_back(annotation); } -void RowData::push_annotation(const Annotation &a) +void RowData::emplace_annotation(srd_proto_data *pdata) { - annotations_.push_back(a); + annotations_.emplace_back(pdata); } -} // decode -} // data -} // pv +} // namespace decode +} // namespace data +} // namespace pv