[Lemon-commits] [lemon_svn] deba: r2743 - hugo/trunk/lemon

Lemon SVN svn at lemon.cs.elte.hu
Mon Nov 6 20:54:54 CET 2006


Author: deba
Date: Fri May 12 11:57:03 2006
New Revision: 2743

Modified:
   hugo/trunk/lemon/maps.h

Log:
Bug fix




Modified: hugo/trunk/lemon/maps.h
==============================================================================
--- hugo/trunk/lemon/maps.h	(original)
+++ hugo/trunk/lemon/maps.h	Fri May 12 11:57:03 2006
@@ -381,7 +381,7 @@
     ///Constructor
     ///\param _m is the undelying map
     ///\param _v is the shift value
-    ShiftWriteMap(const M &_m, const C &_v ) : m(_m), v(_v) {};
+    ShiftWriteMap(M &_m, const C &_v ) : m(_m), v(_v) {};
     Value operator[](Key k) const {return m[k] + v;}
     void set(Key k, const Value& c) { m.set(k, c - v); }
   };



More information about the Lemon-commits mailing list