]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/drul-array.hh
Run grand-replace (issue 3765)
[lilypond.git] / flower / include / drul-array.hh
index a184a897209ba20e78bae1abd52ec3aecd5b447e..fbb45dfcec0395b0b114df1b707f487764fb3ae3 100644 (file)
@@ -1,9 +1,20 @@
 /*
-  drul-array.hh -- declare Drul_array
+  This file is part of LilyPond, the GNU music typesetter.
 
-  source file of the GNU LilyPond music typesetter
+  Copyright (C) 1997--2014 Han-Wen Nienhuys <hanwen@xs4all.nl>
 
-  (c) 1997--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  LilyPond is free software: you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation, either version 3 of the License, or
+  (at your option) any later version.
+
+  LilyPond is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #ifndef DRUL_ARRAY_HH
@@ -33,7 +44,7 @@ struct Drul_array
   {
     return at (d);
   }
-  T constoperator [] (Direction d) const
+  T const &operator [] (Direction d) const
   {
     return at (d);
   }
@@ -63,7 +74,7 @@ inline Real
 linear_combination (Drul_array<Real> const &d, Real x)
 {
   return ((1.0 - x) * Real (d.at (LEFT))
-         + (x + 1.0) * Real (d.at (RIGHT))) * 0.5;
+          + (x + 1.0) * Real (d.at (RIGHT))) * 0.5;
 }
 
 #endif /* DRUL_ARRAY_HH */