src/include/maps.h
changeset 529 e63a1dda5c68
parent 391 ddf25b2fa6ab
equal deleted inserted replaced
4:44a0eb007cd4 5:ff5938fcaa0c
    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