Don't use std:: in the code directly (where possible).
[pulseview.git] / pv / view / cursor.hpp
index 79a0c7f87167441df62456d1666a883afe3df694..e78920e2c3e8df29572fb1d7cd6e62e5b9033e97 100644 (file)
@@ -26,6 +26,8 @@
 
 #include <QSizeF>
 
 
 #include <QSizeF>
 
+using std::shared_ptr;
+
 class QPainter;
 
 namespace pv {
 class QPainter;
 
 namespace pv {
@@ -66,7 +68,7 @@ public:
        QRectF label_rect(const QRectF &rect) const;
 
 private:
        QRectF label_rect(const QRectF &rect) const;
 
 private:
-       std::shared_ptr<Cursor> get_other_cursor() const;
+       shared_ptr<Cursor> get_other_cursor() const;
 };
 
 } // namespace TraceView
 };
 
 } // namespace TraceView