blob: 622b2a14c6ce712c0e53ac5d848f6af78231cf71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- lib-src/enigma-core/ecl_alist.hh.old 2012-09-28 12:28:01.465223434 +0200
+++ lib-src/enigma-core/ecl_alist.hh 2012-09-28 12:28:41.195739039 +0200
@@ -61,7 +61,7 @@
VAL &operator[] (const key_type &key) {
iterator i=find(key);
if (i==this->end())
- i=insert(this->end(), make_pair(key, VAL()));
+ i=this->insert(this->end(), make_pair(key, VAL()));
return i->second;
}
};
|