X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdata%2Fanalog.cpp;h=53fa9a5a62b117c5a1258cdc09dd05d1fc1cf446;hp=c7430432613c3eadbf373e25b16374f0a1cb980f;hb=f9abf97e78bc4825d80926b0ebc6cbaef40768b1;hpb=d9aecf1fcd9af471db3b59de7efc65b9632a6d79 diff --git a/pv/data/analog.cpp b/pv/data/analog.cpp index c743043..53fa9a5 100644 --- a/pv/data/analog.cpp +++ b/pv/data/analog.cpp @@ -21,9 +21,9 @@ #include "analog.h" #include "analogsnapshot.h" -using boost::shared_ptr; using std::deque; using std::max; +using std::shared_ptr; namespace pv { namespace data { @@ -51,7 +51,7 @@ void Analog::clear() uint64_t Analog::get_max_sample_count() const { uint64_t l = 0; - for (const boost::shared_ptr s : _snapshots) { + for (const std::shared_ptr s : _snapshots) { assert(s); l = max(l, s->get_sample_count()); }