]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/duration.cc
*** empty log message ***
[lilypond.git] / lily / duration.cc
index f01d82462183a9ffb38bc2b688006155aae13d6b..b21ca97a97407844590ea7b4bbd596b7fa7cf00e 100644 (file)
@@ -60,17 +60,17 @@ Duration::get_length () const
   return mom * factor_;
 }
 
-String
+std::string
 Duration::to_string () const
 {
-  String s;
+  std::string s;
 
   if (durlog_ < 0)
-    s = "log = " + ::to_string (durlog_);
+    s = "log = " + std::to_string (durlog_);
   else
-    s = ::to_string (1 << durlog_);
+    s = std::to_string (1 << durlog_);
 
-  s += ::to_string ('.', dots_);
+  s += std::to_string ('.', dots_);
   if (factor_ != Moment (Rational (1, 1)))
     s += "*" + factor_.to_string ();
   return s;