]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/scale.hh
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / lily / include / scale.hh
index 11e9837c2b598ef6f6bf8d34a70b90ce89ff3cc1..19cd175c797fd7d9e63a5ac79dbb8c73696c1fa0 100644 (file)
@@ -27,7 +27,7 @@
 struct Scale : public Smob<Scale>
 {
   virtual ~Scale ();
-  Scale (std::vector<Rational> const &);
+  Scale (vector<Rational> const &);
   Scale (Scale const &);
 
   Rational tones_at_step (int step, int octave) const;
@@ -37,7 +37,7 @@ struct Scale : public Smob<Scale>
 
 
 private:
-  std::vector<Rational> step_tones_;
+  vector<Rational> step_tones_;
 };
 
 extern Scale *default_global_scale;