]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lily-version.cc
*** empty log message ***
[lilypond.git] / lily / lily-version.cc
index 4cf80766ebe5f731b2791e19c37e514e2cd1be23..28f2fbaa1ac041cb0b3a80b00667dddf5dbf1919 100644 (file)
 #include "config.hh"
 #include "version.hh"
 
-String
+std::string
 version_string ()
 {
-  String str = MAJOR_VERSION "." MINOR_VERSION "." PATCH_LEVEL;
-  String mpl ("." MY_PATCH_LEVEL);
+  std::string str = MAJOR_VERSION "." MINOR_VERSION "." PATCH_LEVEL;
+  std::string mpl ("." MY_PATCH_LEVEL);
   if (mpl != ".")
     str += mpl;
   return str;
 }
 
-String
+std::string
 gnu_lilypond_string ()
 {
-  String str = "GNU LilyPond";
+  std::string str = "GNU LilyPond";
   return str;
 }
 
-String
+std::string
 gnu_lilypond_version_string ()
 {
-  String str = gnu_lilypond_string () + " " + version_string ();
+  std::string str = gnu_lilypond_string () + " " + version_string ();
   return str;
 }