]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/smobs.hh
* lily/*.cc, lily/include/*.hh: eliminate dummy arguments from
[lilypond.git] / lily / include / smobs.hh
index dd384786edc3bc61696f70563aaea19faf5bff76..cfd49db34f7260e9053aeafee57fc83740c9c869 100644 (file)
@@ -27,7 +27,7 @@
   SCM smobbed_copy ().
 
   Simple smobs are created by adding the
-  DECLARE_SIMPLE_SMOBS(Classname) to the declaration
+  DECLARE_SIMPLE_SMOBS(Classname) to the declaration
 
   2. Complex smobs are objects that have an identity. These objects
   carry this identity in the form of a self_scm () method, which is a
@@ -58,7 +58,7 @@
   list = scm_cons (p->self_scm (), list);
   scm_gc_unprotect_object (p->self_scm ());
 
-  Complex smobs are made with DECLARE_SMOBS (Classname) in the class
+  Complex smobs are made with DECLARE_SMOBS (Classname) in the class
   declaration.
 
   CALLING INTERFACE
@@ -88,7 +88,7 @@
   from file "ly-smobs.icc"
 */
 
-#define DECLARE_SIMPLE_SMOBS(CL, dummy)                \
+#define DECLARE_SIMPLE_SMOBS(CL)               \
   public:                                      \
   SCM smobbed_copy () const;                   \
   DECLARE_BASE_SMOBS (CL)
   static void init_smobs ();                                   \
   private:
 
-#define DECLARE_SMOBS(CL, dummy)               \
+#define DECLARE_SMOBS(CL)                      \
   DECLARE_BASE_SMOBS (CL)                      \
     protected:                                 \
   virtual ~CL ();                              \