]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/input-smob.cc
Release: bump Welcome versions.
[lilypond.git] / lily / input-smob.cc
index 605b790a686675875a13d2db0c72188e34fc3f2f..6f5fc18a54fb116a58dc2c1db13cf227c472704c 100644 (file)
 /* Dummy input location for use if real one is missing.  */
 Input dummy_input_global;
 
-const char Input::type_p_name_[] = "ly:input-location?";
+const char * const Input::type_p_name_ = "ly:input-location?";
 
 SCM
-Input::mark_smob ()
+Input::mark_smob () const
 {
   if (Source_file *sf = get_source_file ())
     return sf->self_scm ();
@@ -37,7 +37,7 @@ Input::mark_smob ()
 }
 
 int
-Input::print_smob (SCM port, scm_print_state *)
+Input::print_smob (SCM port, scm_print_state *) const
 {
   string str = "#<location " + location_string () + ">";
   scm_puts (str.c_str (), port);