From: fred Date: Sun, 24 Mar 2002 20:06:04 +0000 (+0000) Subject: lilypond-0.1.47 X-Git-Tag: release/1.5.59~3420 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c46b0b8afa7e84e54fae0cc94ff727f476a2af1e;p=lilypond.git lilypond-0.1.47 --- diff --git a/Documentation/Makefile b/Documentation/Makefile index 48df92b09d..d6a4cf732e 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -58,7 +58,7 @@ include $(depth)/make/Rules.make # localclean: - rm -f `find $(outdir)` + rm -f `find $(outdir) -type f` diff --git a/flower/dictionary.cc b/flower/dictionary.cc new file mode 100644 index 0000000000..d8e50282cb --- /dev/null +++ b/flower/dictionary.cc @@ -0,0 +1,37 @@ + +#if 0 + + +/** + neuk. hsearch_* is te dom. + */ +template +class Dictionary +{ + hsearch_data * hash_p_; + +public: + Dictionary (); + ~Dictionary (); + Dictionary (Dictionary const&); + T &elem (String s); + T const &elem (String s) const; + bool elt_b (String s) const; + void add (String, T); + void clear (); +} + +Dictionary::Dictionary () +{ + hash_p_ = new hsearch_data; + hash_p_->table = 0; + + int start_size = 51; + int retval = hcreate_r (start_size, hash_p_); + + assert (retval); +} + + + +#endif diff --git a/lily/VERSION b/lily/VERSION index 60de703345..9da9e31cad 100644 --- a/lily/VERSION +++ b/lily/VERSION @@ -1,4 +1,4 @@ MAJOR_VERSION = 0 MINOR_VERSION = 1 -PATCH_LEVEL = 46 +PATCH_LEVEL = 47 MY_PATCH_LEVEL = diff --git a/lily/musical-request.cc b/lily/musical-request.cc index bf2fe3590b..bc46309810 100644 --- a/lily/musical-request.cc +++ b/lily/musical-request.cc @@ -198,7 +198,8 @@ Rhythmic_req::do_print() const Moment -Rhythmic_req::duration() const { +Rhythmic_req::duration() const +{ return duration_.length(); } /* *************** */