From: fred Date: Thu, 10 Oct 1996 18:46:26 +0000 (+0000) Subject: lilypond-0.0.3 X-Git-Tag: release/1.5.59~7115 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=a7395da76d14e0500938f3ec3684c9467e6047f8;p=lilypond.git lilypond-0.0.3 --- diff --git a/debug.hh b/debug.hh index cf2c4ada52..ae75b77fa1 100644 --- a/debug.hh +++ b/debug.hh @@ -6,7 +6,7 @@ -#define WARN warnout << "warning: "<<__FUNCTION__ << ": " +#define WARN warnout << "warning: "<<__FUNCTION__ << "(): " extern ostream &warnout ; extern ostream *mlog; extern Dstream monitor; // monitor diff --git a/molecule.hh b/molecule.hh index 6f63be3ba9..6709b73750 100644 --- a/molecule.hh +++ b/molecule.hh @@ -16,9 +16,7 @@ struct Atom { /// how big is #this#? Box extent() const; - Atom(const Symbol*s) { - sym=s; - } + Atom(const Symbol*s); String TeXstring() const; }; diff --git a/symtable.hh b/symtable.hh index 9d5213a7c3..f390e285e0 100644 --- a/symtable.hh +++ b/symtable.hh @@ -1,5 +1,5 @@ struct Symtable : public Assoc { - + const Symbol * lookup(String)const; };