]> git.donarmstrong.com Git - lilypond.git/blob - flower/rtti.cc
0c48f7fe90a18ad5cd6d07efa0d17f9f5c616be7
[lilypond.git] / flower / rtti.cc
1 #include <cctype>
2
3 #include "virtual-methods.hh"
4
5 char const *
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 }