]> git.donarmstrong.com Git - lilypond.git/blob - flower/rtti.cc
* configure.in: Test for and accept lmodern if EC fonts not found.
[lilypond.git] / flower / rtti.cc
1 #include <cctype>
2
3 #include "virtual-methods.hh"
4
5 const char *
6 demangle_classname (std::type_info const &t)
7 {
8   char const *s = t.name ();
9   while (isdigit (*s))
10     s++;
11   return s;
12 }