From: fred Date: Tue, 26 Mar 2002 21:50:50 +0000 (+0000) Subject: lilypond-1.1.52 X-Git-Tag: release/1.5.59~2384 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=0e3be4cf561ab4ea868d354819367a5a6c328acb;p=lilypond.git lilypond-1.1.52 --- diff --git a/flower/data-file.cc b/flower/data-file.cc index 996752cfce..4852e8588e 100644 --- a/flower/data-file.cc +++ b/flower/data-file.cc @@ -63,9 +63,6 @@ Data_file::get_word() return s; } -/** get a char - Only class member who uses text_file::get - */ char Data_file::data_get() { @@ -80,7 +77,6 @@ Data_file::data_get() return c; } -/// read line, gobble '\n' String Data_file::get_line() { @@ -92,7 +88,6 @@ Data_file::get_line() return s; } -/// gobble stuff before first entry on a line. void Data_file::gobble_leading_white() { diff --git a/flower/directed-graph.cc b/flower/directed-graph.cc index 1eb6d8b449..0c9a7cc085 100644 --- a/flower/directed-graph.cc +++ b/flower/directed-graph.cc @@ -27,7 +27,7 @@ Directed_graph_node::get_out_edge_arr() const return edge_out_l_arr_; } -/** +/* Should not copy deps automatically */ Directed_graph_node::Directed_graph_node (Directed_graph_node const&) diff --git a/flower/dstream.cc b/flower/dstream.cc index 3da8dfeb45..0b7be148c8 100644 --- a/flower/dstream.cc +++ b/flower/dstream.cc @@ -14,7 +14,7 @@ #include "string-convert.hh" #include "rational.hh" -/// indent of each level +/// amount of indentation for each level. const int INDTAB = 2; /* diff --git a/flower/include/data-file.hh b/flower/include/data-file.hh index 5440064923..9fde76b305 100644 --- a/flower/include/data-file.hh +++ b/flower/include/data-file.hh @@ -23,6 +23,10 @@ public: Text_stream::eof_b; Text_stream::get_name; + /** + Get a char. + Only class member who uses text_file::get + */ char data_get(); void data_unget (char c) { unget (c); diff --git a/flower/include/file-path.hh b/flower/include/file-path.hh index 02ecb1a884..bdfa5e3870 100644 --- a/flower/include/file-path.hh +++ b/flower/include/file-path.hh @@ -26,10 +26,8 @@ class File_path : private Array { public: - /// locate a file in the search path String find (String nm) const; - /// add to end of path. Array::push; String str ()const; void add (String str);