]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/lilypond-input-version.hh
*** empty log message ***
[lilypond.git] / lily / include / lilypond-input-version.hh
index 908474a76b74c78609fbf7dfe99f274cb9516b9d..69e13e3b8692c16f6570c2cd77e81be0862b4a22 100644 (file)
@@ -9,20 +9,20 @@
 #ifndef LILYPOND_VERSION_HH
 #define LILYPOND_VERSION_HH
 
-#include "string.hh"
+#include "std-string.hh"
 
 struct Lilypond_version
 {
   Lilypond_version (int major, int minor, int patch);
-  Lilypond_version (String str);
+  Lilypond_version (std::string str);
 
-  String to_string () const;
+  std::string to_string () const;
   operator int () const;
 
   int major_;
   int minor_;
   int patch_;
-  String extra_patch_string_;
+  std::string extra_patch_string_;
 };
 
 extern Lilypond_version oldest_version;