From: fred Date: Sun, 24 Mar 2002 19:26:40 +0000 (+0000) Subject: lilypond-0.0.17 X-Git-Tag: release/1.5.59~5679 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=24dfce54bb4761849e312c9af663df52362db7ff;p=lilypond.git lilypond-0.0.17 --- diff --git a/hdr/proto.hh b/hdr/proto.hh index ebc4fd1398..09465e3e85 100644 --- a/hdr/proto.hh +++ b/hdr/proto.hh @@ -80,14 +80,16 @@ struct Voice_element; struct Voicegroup; struct Voice_list; -struct Vertical_music; -struct Horizontal_music; -struct Horizontal_simple; -struct Vertical_simple ; +struct Input_music; +struct Simple_music; +struct Complex_music; struct Music_voice; struct Music_general_chord; + struct Input_score; struct Input_staff; struct Input_command; struct Notename_tab; +struct Input_file; +struct Keyword_table; #endif // PROTO_HH diff --git a/src/identifier.cc b/src/identifier.cc index 5b552898a9..6241768694 100644 --- a/src/identifier.cc +++ b/src/identifier.cc @@ -2,10 +2,11 @@ #include "identparent.hh" #include "lexer.hh" +#include "debug.hh" void Identifier::error() { String e("Wrong identifier type: "); - yyerror(e + classname()); + ::error(e + classname()); }