From: fred Date: Thu, 10 Oct 1996 19:42:40 +0000 (+0000) Subject: lilypond-0.0.3 X-Git-Tag: release/1.5.59~7109 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f66969e8822bda4d027c9b81c586c114945706d0;p=lilypond.git lilypond-0.0.3 --- diff --git a/misc.hh b/misc.hh index a0ce0161ad..fb8889f551 100644 --- a/misc.hh +++ b/misc.hh @@ -4,5 +4,5 @@ int intlog2(int d); Real duration_to_idealspace(Mtime d); class String; -char *get_version(); +const char *get_version(); #endif diff --git a/tstream.hh b/tstream.hh index 07be0c1706..9474dd69a8 100644 --- a/tstream.hh +++ b/tstream.hh @@ -12,7 +12,7 @@ struct Tex_stream { /// open a file for writing Tex_stream(String filename); - + void header(); /// delegate conversion to string class. Tex_stream &operator<<(String); diff --git a/version.cc b/version.cc index d305e403c6..401273b6b1 100644 --- a/version.cc +++ b/version.cc @@ -2,7 +2,7 @@ static char *s = "LilyPond version " VERSIONSTR " compiled on " __DATE__ " at " __TIME__ "\n"; -char * +const char * get_version() { return s;