]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/rtti.cc
fixes for cyclic dependencies.
[lilypond.git] / flower / rtti.cc
index ae1aa8658c4cc2af5d92e87b5e6efcc19a374075..39941f8f74e296b92f84092360dad3b7dd1bcef2 100644 (file)
@@ -1,12 +1,12 @@
-#include <typeinfo>
-#include <ctype.h>
-#include "virtual-methods.hh"
+#include <cctype>
+using namespace std;
 
+#include "virtual-methods.hh"
 
-const char *
+char const *
 demangle_classname (type_info const &t)
 {
-  char const *s = t.name();
+  char const *s = t.name ();
   while (isdigit (*s))
     s++;
   return s;