]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/dictionary.hh
release: 1.1.0
[lilypond.git] / flower / include / dictionary.hh
index 55f0e4fedd932edba9f1c4f320319860311b362f..d3c9a7afb331137c8a666a8b999f60141eb07a1a 100644 (file)
@@ -100,7 +100,6 @@ public:
          nexti = (nexti + j*j)%sz;
        }
       
-    finish:
       return retval;
     }
 };
@@ -181,7 +180,10 @@ public:
 
   V operator [] (String k) const
     {
-      return elem (k);
+      V retval;
+      if (!elem_b (k))
+       return retval ;
+      retval ((Dictionary<V> *) this)->elem (k);
     }
 
   V remove (String s)