]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/test/main.cc
release: 0.1.41
[lilypond.git] / flower / test / main.cc
index 85c4cbce27397d97e13705fbe209eb0166d31fc3..5d2e6db18fd7d4abe572b3cde7c46b22ead6c422 100644 (file)
@@ -5,16 +5,16 @@ Array< fptr > *test_arr_p;
 
 void reg_test (fptr f)
 {
-    if (!test_arr_p)
-       test_arr_p = new Array<fptr>;
-    test_arr_p->push(f);
+  if (!test_arr_p)
+    test_arr_p = new Array<fptr>;
+  test_arr_p->push(f);
 }
 
 int
 main()
 {
-    if (test_arr_p) {
-       for (int i=0; i < test_arr_p->size(); i++)
-           (*test_arr_p)[i] ();
-    }
+  if (test_arr_p) {
+    for (int i=0; i < test_arr_p->size(); i++)
+      (*test_arr_p)[i] ();
+  }
 }