Don't use std:: in the code directly (where possible).
[pulseview.git] / pv / prop / int.hpp
index 92d7c62c93f9748c816b7c00fe5a1ec678f18cee..e94f6cbf7e549039b3c8f4ed435247f29000e861 100644 (file)
@@ -26,6 +26,8 @@
 
 #include "property.hpp"
 
+using std::pair;
+
 class QSpinBox;
 
 namespace pv {
@@ -37,7 +39,7 @@ class Int : public Property
 
 public:
        Int(QString name, QString suffix,
-               boost::optional< std::pair<int64_t, int64_t> > range,
+               boost::optional< pair<int64_t, int64_t> > range,
                Getter getter, Setter setter);
 
        virtual ~Int() = default;
@@ -51,7 +53,7 @@ private Q_SLOTS:
 
 private:
        const QString suffix_;
-       const boost::optional< std::pair<int64_t, int64_t> > range_;
+       const boost::optional< pair<int64_t, int64_t> > range_;
 
        Glib::VariantBase value_;
        QSpinBox *spin_box_;