X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finput-smob.cc;h=6f5fc18a54fb116a58dc2c1db13cf227c472704c;hb=a6a51abfd0195a3cf7d6ea095cf69808852f21ce;hp=7ed92deab573f8d3fda6e75bf34ac1abe7b143be;hpb=0fe24db3936774a8fb913cb14c997036db7aeb1c;p=lilypond.git diff --git a/lily/input-smob.cc b/lily/input-smob.cc index 7ed92deab5..6f5fc18a54 100644 --- a/lily/input-smob.cc +++ b/lily/input-smob.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 2000--2014 Han-Wen Nienhuys + Copyright (C) 2000--2015 Han-Wen Nienhuys LilyPond is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -25,10 +25,10 @@ /* 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 = "#"; scm_puts (str.c_str (), port); @@ -47,8 +47,8 @@ Input::print_smob (SCM port, scm_print_state *) SCM Input::equal_p (SCM sa, SCM sb) { - Input *a = unsmob (sa); - Input *b = unsmob (sb); + Input *a = unsmob (sa); + Input *b = unsmob (sb); if (a->get_source_file () == b->get_source_file () && a->start () == b->start () && a->end () == b->end ())