Don't use std:: in the code directly (where possible).
[pulseview.git] / pv / data / analog.cpp
index 1a2449891d9d8b86922c6b6efb6350d8b14db70d..854dae3e68eaaec8d71212219365323abcefbbe8 100644 (file)
@@ -61,7 +61,7 @@ void Analog::clear()
 uint64_t Analog::max_sample_count() const
 {
        uint64_t l = 0;
-       for (const std::shared_ptr<AnalogSegment> s : segments_) {
+       for (const shared_ptr<AnalogSegment> s : segments_) {
                assert(s);
                l = max(l, s->get_sample_count());
        }