]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/std-string.cc
Merge branch 'master' of ssh+git://hanwen@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / flower / std-string.cc
index 4069278cb20d35fc2cd5b15cc0e5b0ec25c86df8..6d8ebd52f5ba7fe7d00319176feec7150b14eb9d 100644 (file)
@@ -106,8 +106,9 @@ string_compare (string const &a, string const &b)
 vector<string>
 string_split (string str, char c)
 {
-  vector<string> a;
   ssize i = str.find (c);
+
+  vector<string> a;
   while (i != NPOS)
     {
       string s = str.substr (0, i);