]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/pqueue.hh
Run grand-replace (issue 3765)
[lilypond.git] / flower / include / pqueue.hh
index 6807f8bcb8a4d00590808ad1ae028a0a4b4db2ae..0b15f1fef93a039a246547b6d7d159293fc4bd9e 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 1997--2010 Han-Wen Nienhuys <hanwen@xs4all.nl>
+  Copyright (C) 1997--2014 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
@@ -89,14 +89,14 @@ public:
     vsize j = i / 2;
     while (j)
       {
-       if (compare (elt (j), v) > 0)
-         {
-           elt (i) = elt (j);
-           i = j;
-           j = i / 2;
-         }
-       else
-         break;
+        if (compare (elt (j), v) > 0)
+          {
+            elt (i) = elt (j);
+            i = j;
+            j = i / 2;
+          }
+        else
+          break;
       }
     elt (i) = v;
     OK ();
@@ -117,13 +117,13 @@ public:
 
     while (mini < size ())
       {
-       if (compare (elt (mini + 1), elt (mini)) < 0)
-         mini++;
-       if (compare (last, elt (mini)) < 0)
-         break;
-       elt (lasti) = elt (mini);
-       lasti = mini;
-       mini *= 2;
+        if (compare (elt (mini + 1), elt (mini)) < 0)
+          mini++;
+        if (compare (last, elt (mini)) < 0)
+          break;
+        elt (lasti) = elt (mini);
+        lasti = mini;
+        mini *= 2;
       }
     elt (lasti) = last;
     heap_array_.pop_back ();