X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finput-smob.cc;h=e3bc5d275d8f90907351184820cf01091c4cf971;hb=10ac84f21313e8cc86540d1c8137cb96020b98b3;hp=03c9da46b0d9f2f06963deca275b964bfe3719e3;hpb=75eebcb49e52d296b1da3e1074e0825d2c780db4;p=lilypond.git diff --git a/lily/input-smob.cc b/lily/input-smob.cc index 03c9da46b0..e3bc5d275d 100644 --- a/lily/input-smob.cc +++ b/lily/input-smob.cc @@ -8,7 +8,7 @@ #include "input-smob.hh" -#include "string.hh" +#include "std-string.hh" #include "ly-smobs.icc" @@ -26,8 +26,8 @@ SCM mark_smob (SCM) static int print_smob (SCM s, SCM port, scm_print_state *) { - String str = "#location_string () + ">"; - scm_puts (str.to_str0 (), port); + string str = "#location_string () + ">"; + scm_puts (str.c_str (), port); return 1; }