summaryrefslogtreecommitdiff
path: root/lily/include/translator.hh
diff options
context:
space:
mode:
Diffstat (limited to 'lily/include/translator.hh')
-rw-r--r--lily/include/translator.hh8
1 files changed, 2 insertions, 6 deletions
diff --git a/lily/include/translator.hh b/lily/include/translator.hh
index 6120651957..09ab168658 100644
--- a/lily/include/translator.hh
+++ b/lily/include/translator.hh
@@ -52,9 +52,9 @@
{ \
return Callback_wrapper::make_smob<trampoline<NAME, mf> > (); \
} \
- template <void (NAME::*callback)(Grob_info)> \
+ template <void (NAME::*mf)(Grob_info)> \
static SCM method_finder () { \
- return Callback2_wrapper::make_smob<ack_trampoline <NAME, callback> > (); \
+ return Callback2_wrapper::make_smob<trampoline <NAME, mf> > (); \
} \
/* end #define */
@@ -165,10 +165,6 @@ protected: // should be private.
static SCM
method_finder () { return SCM_UNDEFINED; }
- // Overriden in Engraver. Don't instantiate.
- template <class T, void (T::*)(Grob_info)>
- static SCM ack_trampoline (SCM, SCM, SCM);
-
virtual void derived_mark () const;
static SCM event_class_symbol (const char *ev_class);
SCM static_translator_description (const char *grobs,