]> git.donarmstrong.com Git - lilypond.git/blob - flower/rtti.cc
Imported Upstream version 2.12.3
[lilypond.git] / flower / rtti.cc
1 #include <cctype>
2 using namespace std;
3
4 #include "virtual-methods.hh"
5
6 char const *
7 demangle_classname (type_info const &t)
8 {
9   char const *s = t.name ();
10   while (isdigit (*s))
11     s++;
12   return s;
13 }