Nitpick: ly:spanner-bound grob name slur -> spanner.
[lilypond.git] / flower / rtti.cc
blob39941f8f74e296b92f84092360dad3b7dd1bcef2
1 #include <cctype>
2 using namespace std;
4 #include "virtual-methods.hh"
6 char const *
7 demangle_classname (type_info const &t)
9 char const *s = t.name ();
10 while (isdigit (*s))
11 s++;
12 return s;