X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Flily-version.cc;h=95f503e6108a52ecc1522a1803dc1e67f969fc91;hb=864dad49c35470fa67a8917552d9a54383647a08;hp=bc9c2bd876073e4b7734af036c55b277ed26c254;hpb=d9b43b93f2c885409bafdb157138158f65cc49aa;p=lilypond.git diff --git a/lily/lily-version.cc b/lily/lily-version.cc index bc9c2bd876..95f503e610 100644 --- a/lily/lily-version.cc +++ b/lily/lily-version.cc @@ -11,9 +11,9 @@ #include "lily-version.hh" String -version_str () +version_string () { - String str (MAJOR_VERSION "." MINOR_VERSION "." PATCH_LEVEL); + String str = MAJOR_VERSION "." MINOR_VERSION "." PATCH_LEVEL; String mpl ("." MY_PATCH_LEVEL); if (mpl != ".") str += mpl; @@ -21,16 +21,16 @@ version_str () } String -gnu_lilypond_str () +gnu_lilypond_string () { String str = "GNU LilyPond"; return str; } String -gnu_lilypond_version_str () +gnu_lilypond_version_string () { - String str = gnu_lilypond_str () + " " + version_str (); + String str = gnu_lilypond_string () + " " + version_string (); return str; }