From 79eb08d18dc4d857dc28ad3abd50d86871c48fcd Mon Sep 17 00:00:00 2001
From: fred <fred>
Date: Sun, 24 Mar 2002 20:15:12 +0000
Subject: [PATCH] lilypond-1.1.48

---
 flower/include/unionfind.hh | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/flower/include/unionfind.hh b/flower/include/unionfind.hh
index 9f360be400..b83a673a5d 100644
--- a/flower/include/unionfind.hh
+++ b/flower/include/unionfind.hh
@@ -13,15 +13,14 @@
     
     */
 struct Union_find {    
-    void connect (int i, int j);
-    int find (int i);
-    bool equiv (int i, int j) { return find (i) == find (j); }
-    Union_find (int sz);
+  void connect (int i, int j);
+  int find (int i);
+  bool equiv (int i, int j) { return find (i) == find (j); }
+  Union_find (int sz);
 
-private:
   /**
      This array provides the representing point for each node in the graph.
-   */
+  */
   Array<int> classes_;
 };
 #endif
-- 
2.39.5