]> git.donarmstrong.com Git - lilypond.git/commitdiff
flower-1.0.13
authorfred <fred>
Wed, 11 Dec 1996 23:26:56 +0000 (23:26 +0000)
committerfred <fred>
Wed, 11 Dec 1996 23:26:56 +0000 (23:26 +0000)
flower/associter.hh

index 6103f2266c8746a73e22926e08d1495636914d87..0902c3953d504a5c2cdabfd7dcf0e4890ba7bdb7 100644 (file)
@@ -14,9 +14,9 @@ template<class K, class V>
 struct Assoc_iter {
     int i;
     Assoc<K,V> &assoc_;
-    
-    Assoc_iter(Assoc<K,V> &a) :
-       assoc_(a)
+    /// we don't want to be bothered by const correctness
+    Assoc_iter(const Assoc<K,V> &a) :
+       assoc_((Assoc<K,V> &)a)
     {  
        i= next(0);
     }