Index: src/include/maps.h
===================================================================
--- src/include/maps.h	(revision 286)
+++ src/include/maps.h	(revision 345)
@@ -78,5 +78,5 @@
 
 
-    StdMap() {}
+    StdMap() : v() {}
     /// Constructor with specified default value
     StdMap(const T& _v) : v(_v) {}
@@ -104,5 +104,9 @@
       return (*i).second;
     }
-    void set(const Key &k, const T &t) { parent::operator[](k)=t; }
+    void set(const Key &k, const T &t) {
+      // tyuha, ez valamiert segfault-olt igy:
+      // parent::operator[](k) = t;
+      (  *( (insert(PairType(k,t))).first )  ).second=t;
+    }
 
     /// Changes the default value of the map.
