]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/type-swallow-trans.hh
release: 1.1.1
[lilypond.git] / lily / include / type-swallow-trans.hh
index 53eb7ea04ab6d6cd9240e55101b6c69c6692a883..27bac3d661e49e96302cb27088d6367bc2373bf4 100644 (file)
 #define TYPESWALLOW_GRAV_HH
 
 #include "translator.hh"
+
 /// eat a certain type of request
 class Type_swallow_translator : public virtual Translator
 {
 protected:
-  const char * type_;
+  const type_info * type_;
   bool do_try_request (Request*);
 public:
   DECLARE_MY_RUNTIME_TYPEINFO;
@@ -26,7 +27,7 @@ public:
 #define DECLARE_REQUEST_SWALLOWER(TYPE)  \
 struct TYPE ## _swallow_translator : public Type_swallow_translator {\
   TYPE ## _swallow_translator() { \
-    type_ = TYPE::static_name ();\
+    type_ = &typeid (TYPE);\
   }\
   DECLARE_MY_RUNTIME_TYPEINFO;\
   TRANSLATOR_CLONE(TYPE ## _swallow_translator);\