]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/moment.cc
Web-ja: update introduction
[lilypond.git] / lily / moment.cc
index 9f3e8ed383837e3fb7059eebff437cac5423588a..20c1f58a0b51cdef2e0c5e42e16c4dced7014e7d 100644 (file)
@@ -44,11 +44,11 @@ Moment::Moment (Rational m)
 }
 
 
-const char Moment::type_p_name_[] = "ly:moment?";
+const char * const Moment::type_p_name_ = "ly:moment?";
 
 
 int
-Moment::print_smob (SCM port, scm_print_state *)
+Moment::print_smob (SCM port, scm_print_state *) const
 {
   scm_puts ("#<Mom ", port);
   string str = to_string ();
@@ -71,8 +71,8 @@ Moment::as_scheme () const
 SCM
 Moment::equal_p (SCM a, SCM b)
 {
-  Moment *m1 = Moment::unsmob (a);
-  Moment *m2 = Moment::unsmob (b);
+  Moment *m1 = unsmob<Moment> (a);
+  Moment *m2 = unsmob<Moment> (b);
 
   return (*m1 == *m2) ? SCM_BOOL_T : SCM_BOOL_F;
 }
@@ -186,7 +186,7 @@ operator << (ostream &os, Moment const &m)
 Moment
 robust_scm2moment (SCM m, Moment d)
 {
-  Moment *p = Moment::unsmob (m);
+  Moment *p = unsmob<Moment> (m);
   if (!p)
     return d;
   else
@@ -196,5 +196,5 @@ robust_scm2moment (SCM m, Moment d)
 bool
 moment_less (SCM a, SCM b)
 {
-  return *Moment::unsmob (a) < *Moment::unsmob (b);
+  return *unsmob<Moment> (a) < *unsmob<Moment> (b);
 }