]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.67
authorfred <fred>
Thu, 29 May 1997 21:23:25 +0000 (21:23 +0000)
committerfred <fred>
Thu, 29 May 1997 21:23:25 +0000 (21:23 +0000)
flower/include/virtual-methods.hh

index e5c807e8a97f2769c11f58cda627d62eb9a5d3e9..fa6b5df9d448131f0bc1ef71c4c2cfe05a465742 100644 (file)
@@ -14,9 +14,9 @@
   The static_name() can *not* be inlined (this might have the effect that 
   s->name() != S::static_name(). Overlapping strings need not be merged in C++
  */
-#define NAME_MEMBERS(c)        \
+#define NAME_MEMBERS() \
 static char const *static_name();\
-virtual char const *name() const{ return c::static_name(); } \
+virtual char const *name() const{ return static_name(); } \
 int a_stupid_nonexistent_function_to_allow_the_semicolon_come_out()
 
 #define IMPLEMENT_STATIC_NAME(c)\