Adding update() to NullMap
authorjacint
Tue, 04 May 2004 16:17:17 +0000
changeset 529e63a1dda5c68
parent 528 c00f6ebbe1e6
child 530 d9c06ac0b3a3
Adding update() to NullMap
src/include/maps.h
     1.1 --- a/src/include/maps.h	Tue May 04 16:16:49 2004 +0000
     1.2 +++ b/src/include/maps.h	Tue May 04 16:17:17 2004 +0000
     1.3 @@ -26,6 +26,9 @@
     1.4  
     1.5      T operator[](const K&) const { return T(); }
     1.6      void set(const K&, const T&) {}
     1.7 +    ///\bug when update is removed from map concepts by being dynamic
     1.8 +    ///stuffs, this line have to be removed.
     1.9 +    void update() { }
    1.10    };
    1.11  
    1.12