]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/cons.hh
Nitpick run.
[lilypond.git] / flower / include / cons.hh
index bf1916a90fc8fbd45cd7a834fe51ba4424bb9742..5f7238173b7059b43601ae2fa06e67437ff0f69a 100644 (file)
@@ -69,9 +69,7 @@ template<class T>
 Cons<T> *last_cons (Cons<T> *head)
 {
   while (head && head->next_)
-    {
-      head = head->next_;
-    }
+    head = head->next_;
   return head;
 }
 
@@ -127,9 +125,7 @@ public:
   {
     Cons<T> **p = &head_;
     for (; *p && i; p = &((*p)->next_))
-      {
-       i--;
-      }
+      i--;
 
     if (*p)
       {