]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/array.icc
Nitpick run.
[lilypond.git] / flower / include / array.icc
index 118b1f43d38aa0400280c1b277779f3d2b7f925c..f5ccafee74e866d540d927d211cb4ef821e3c3d6 100644 (file)
@@ -147,9 +147,7 @@ binary_search (Array<T> const &table,
   binary_search_bounds (table, key, compare, &lo, &hi);
 
   if (! (*compare) (key, table[lo]))
-    {
-      return lo;
-    }
+    return lo;
   else
     return -1;              /* not found */
 }