X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fdata%2Fdecode%2Frowdata.cpp;h=aff4a26b333b68b2672af073c87b8ad5c392d406;hb=8c3397413149b87d2755494fe73186f27edab369;hp=af1fc449ac35924dac9796c7f14f0ca37f49f137;hpb=8b2eb22ed4f467f5364e8e9824a12137e2433b7e;p=pulseview.git diff --git a/pv/data/decode/rowdata.cpp b/pv/data/decode/rowdata.cpp index af1fc44..aff4a26 100644 --- a/pv/data/decode/rowdata.cpp +++ b/pv/data/decode/rowdata.cpp @@ -42,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