]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lilypond-version.cc
CG: Update of Patchy instructions
[lilypond.git] / lily / lilypond-version.cc
index cc829ab6ca19d4aefc147af341a880423adbdb8e..fd76deec67e1ea33654c1a44db35381fed1d9d6a 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 1998--2010 Jan Nieuwenhuizen <janneke@gnu.org>
+  Copyright (C) 1998--2014 Jan Nieuwenhuizen <janneke@gnu.org>
 
   LilyPond is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
@@ -30,12 +30,12 @@ Lilypond_version::Lilypond_version (int major, int minor, int patch)
   patch_ = patch;
 }
 
-Lilypond_version::Lilypond_version (string str)
+Lilypond_version::Lilypond_version (const string &str)
 {
-  major_ = 0; 
+  major_ = 0;
   minor_ = 0;
   patch_ = 0;
-  
+
   vector<string> version;
   version = string_split (str, '.');
 
@@ -43,7 +43,7 @@ Lilypond_version::Lilypond_version (string str)
     major_ = String_convert::dec2int (version[0]);
   if (version.size () > 1 && isdigit (version[1][0]))
     minor_ = String_convert::dec2int (version[1]);
-  
+
   patch_ = 0;
   if (version.size () >= 3
       && isdigit (version[2][0]))
@@ -57,8 +57,8 @@ string
 Lilypond_version::to_string () const
 {
   return ::to_string (major_)
-    + "." + ::to_string (minor_)
-    + "." + ::to_string (patch_);
+         + "." + ::to_string (minor_)
+         + "." + ::to_string (patch_);
 }
 
 Lilypond_version::operator int () const