From: fred Date: Sun, 24 Mar 2002 19:41:04 +0000 (+0000) Subject: lilypond-0.1.7 X-Git-Tag: release/1.5.59~4852 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e7ab8eff47d59fe70402874d774b4f330e8c2cf8;p=lilypond.git lilypond-0.1.7 --- diff --git a/flower/dstream.cc b/flower/dstream.cc index 23b77bbbc4..ce0a51d363 100644 --- a/flower/dstream.cc +++ b/flower/dstream.cc @@ -13,6 +13,7 @@ #include "text-db.hh" #include "string-convert.hh" #include "assoc-iter.hh" + /// indent of each level const INDTAB = 2; @@ -75,8 +76,6 @@ Dstream::silence(String s) return (*silent_assoc_p_)[s]; } -/** Output a string via the Dstream. This is the only output - interface. It delegates all conversion to String class. */ Dstream & Dstream::operator<<(String s) { @@ -172,5 +171,4 @@ Dstream::clear_silence() for (Assoc_iter i(*silent_assoc_p_); i.ok(); i++) { i.val() = 0; } - }