]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/gdb.cc
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / lily / gdb.cc
index c47934c7ba1476c569f3feab019a3eeabe4ad1a4..d01961985252681729911af9c1f5e956183c507e 100644 (file)
@@ -2,21 +2,21 @@
 #include "paper-column.hh"
 
 extern "C" {
-// thanks to GDBs wonderful casting abilities, we need these:
-Item*
-to_item (Grob* g)
-{
-  return dynamic_cast<Item*> (g);
-}
-Spanner*
-to_spanner (Grob*g)
-{
-  return dynamic_cast<Spanner*> (g);
-}
+  // thanks to GDBs wonderful casting abilities, we need these:
+  Item *
+  to_item (Grob *g)
+  {
+    return dynamic_cast<Item *> (g);
+  }
+  Spanner *
+  to_spanner (Grob *g)
+  {
+    return dynamic_cast<Spanner *> (g);
+  }
 
-Paper_column*
-to_pc (Grob* g)
-{
-  return dynamic_cast<Paper_column*> (g);
-}
+  Paper_column *
+  to_pc (Grob *g)
+  {
+    return dynamic_cast<Paper_column *> (g);
+  }
 }