]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/interval-set.hh
Issue 4550 (2/2) Avoid "using namespace std;" in included files
[lilypond.git] / flower / include / interval-set.hh
index 84f6debb30a6a7839025e1f07a9fad30fdd6cadb..610866be32b3278ed48266385bb33c12bbf00569 100644 (file)
@@ -28,15 +28,15 @@ class Interval_set
 public:
   Interval_set ();
 
-  static Interval_set interval_union (vector<Interval>);
+  static Interval_set interval_union (std::vector<Interval>);
 
-  vector<Interval> const &intervals () const { return intervals_; }
-  vector<Interval>::const_iterator upper_bound (Real x) const;
+  std::vector<Interval> const &intervals () const { return intervals_; }
+  std::vector<Interval>::const_iterator upper_bound (Real x) const;
   Real nearest_point (Real x, Direction dir = CENTER) const;
   Interval_set complement () const;
 
 private:
-  vector<Interval> intervals_;
+  std::vector<Interval> intervals_;
 };
 
 #endif /* INTERVAL_SET_HH */