]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lilypond-version.cc
* lily/include/midi-item.hh (class Midi_track): idem.
[lilypond.git] / lily / lilypond-version.cc
index 252366251d365ffcf53fffcd8e50bedbfa388a42..6c453fab74df84a0140d65eec0836174f5ac9317 100644 (file)
@@ -10,7 +10,7 @@
 
 #include "lilypond-input-version.hh"
 #include "string-convert.hh"
-#include "std-vector.hh"
+#include "misc.hh"
 
 Lilypond_version::Lilypond_version (int major, int minor, int patch)
 {
@@ -26,7 +26,7 @@ Lilypond_version::Lilypond_version (string str)
   patch_ = 0;
   
   vector<string> version;
-  version = String_convert::split (str, '.');
+  version = split_string (str, '.');
 
   if (version.size () > 0 && isdigit (version[0][0]))
     major_ = String_convert::dec2int (version[0]);