From: fred Date: Wed, 11 Dec 1996 23:26:56 +0000 (+0000) Subject: flower-1.0.13 X-Git-Tag: release/1.5.59~6606 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7b055240e4ec70b93d997021d3a888d87d984833;p=lilypond.git flower-1.0.13 --- diff --git a/flower/associter.hh b/flower/associter.hh index 6103f2266c..0902c3953d 100644 --- a/flower/associter.hh +++ b/flower/associter.hh @@ -14,9 +14,9 @@ template struct Assoc_iter { int i; Assoc &assoc_; - - Assoc_iter(Assoc &a) : - assoc_(a) + /// we don't want to be bothered by const correctness + Assoc_iter(const Assoc &a) : + assoc_((Assoc &)a) { i= next(0); }