]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/glissando-engraver.cc
Run grand replace for 2015.
[lilypond.git] / lily / glissando-engraver.cc
index bb57bf1fcdccc5405842500eb10d478694b1bf61..35ff94228a8912e0a35eb1cc984fcb7fc3a801f9 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 2000--2011 Jan Nieuwenhuizen <janneke@gnu.org>
+  Copyright (C) 2000--2015 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
@@ -124,7 +124,7 @@ Glissando_engraver::acknowledge_note_column (Grob_info info)
               continue;
             int n1 = robust_scm2int (scm_car (candidate), -1);
             int n2 = robust_scm2int (scm_cdr (candidate), -1);
-            if ((n1 < 0) || (n2 < 0) || (size_t(n1) >= note_heads.size ()))
+            if ((n1 < 0) || (n2 < 0) || (size_t (n1) >= note_heads.size ()))
               continue;
             note_column_1.push_back (vsize (n1));
             note_column_2.push_back (vsize (n2));