]> sigrok.org Git - pulseview.git/blobdiff - pv/data/logic.cpp
Replaced boost::shared_ptr with std::shared_ptr
[pulseview.git] / pv / data / logic.cpp
index 9bcfd0a382ac39c020d396007d07a4e1885fbef8..2737bcb58238870b63066231778ca674c6231e25 100644 (file)
@@ -21,9 +21,9 @@
 #include "logic.h"
 #include "logicsnapshot.h"
 
-using boost::shared_ptr;
 using std::deque;
 using std::max;
+using std::shared_ptr;
 
 namespace pv {
 namespace data {
@@ -59,7 +59,7 @@ void Logic::clear()
 uint64_t Logic::get_max_sample_count() const
 {
        uint64_t l = 0;
-       for (boost::shared_ptr<LogicSnapshot> s : _snapshots) {
+       for (std::shared_ptr<LogicSnapshot> s : _snapshots) {
                assert(s);
                l = max(l, s->get_sample_count());
        }