From 7b055240e4ec70b93d997021d3a888d87d984833 Mon Sep 17 00:00:00 2001 From: fred Date: Wed, 11 Dec 1996 23:26:56 +0000 Subject: [PATCH] flower-1.0.13 --- flower/associter.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); } -- 2.39.5