equal
deleted
inserted
replaced
24 typedef K KeyType; |
24 typedef K KeyType; |
25 typedef T ValueType; |
25 typedef T ValueType; |
26 |
26 |
27 T operator[](const K&) const { return T(); } |
27 T operator[](const K&) const { return T(); } |
28 void set(const K&, const T&) {} |
28 void set(const K&, const T&) {} |
|
29 ///\bug when update is removed from map concepts by being dynamic |
|
30 ///stuffs, this line have to be removed. |
|
31 void update() { } |
29 }; |
32 }; |
30 |
33 |
31 |
34 |
32 /// Constant map. |
35 /// Constant map. |
33 |
36 |