]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lilypond-version.cc
* flower/include/std-string.hh:
[lilypond.git] / lily / lilypond-version.cc
index e12dbcbea865d94aa526fd19e79c70c21f1f22b4..252366251d365ffcf53fffcd8e50bedbfa388a42 100644 (file)
@@ -19,13 +19,13 @@ Lilypond_version::Lilypond_version (int major, int minor, int patch)
   patch_ = patch;
 }
 
-Lilypond_version::Lilypond_version (std::string str)
+Lilypond_version::Lilypond_version (string str)
 {
   major_ = 0; 
   minor_ = 0;
   patch_ = 0;
   
-  std::vector<std::string> version;
+  vector<string> version;
   version = String_convert::split (str, '.');
 
   if (version.size () > 0 && isdigit (version[0][0]))
@@ -42,10 +42,12 @@ Lilypond_version::Lilypond_version (std::string str)
     extra_patch_string_ = version[3];
 }
 
-std::string
+string
 Lilypond_version::to_string () const
 {
-  return std::to_string (major_) + "." + std::to_string (minor_) + "." + std::to_string (patch_);
+  return ::to_string (major_)
+    + "." + ::to_string (minor_)
+    + "." + ::to_string (patch_);
 }
 
 Lilypond_version::operator int () const