src/lemon/concept/maps.h
changeset 1367 a490662291b9
parent 1359 1581f961cfaa
child 1375 ebdce4f68ac4
     1.1 --- a/src/lemon/concept/maps.h	Mon Apr 18 14:18:12 2005 +0000
     1.2 +++ b/src/lemon/concept/maps.h	Mon Apr 18 14:59:24 2005 +0000
     1.3 @@ -76,7 +76,7 @@
     1.4        typedef T Value;
     1.5  
     1.6        /// Sets the value associated with a key.
     1.7 -      void set(const Key &k,const Value &t) {}
     1.8 +      void set(const Key &,const Value &) {}
     1.9  
    1.10        ///Default constructor
    1.11        WriteMap() {}
    1.12 @@ -114,9 +114,9 @@
    1.13        typedef T Value;
    1.14  
    1.15        /// Returns the value associated with a key.
    1.16 -      Value operator[](const Key &k) const {return Value();}
    1.17 +      Value operator[](const Key &) const {return Value();}
    1.18        /// Sets the value associated with a key.
    1.19 -      void set(const Key &k,const Value &t) {}
    1.20 +      void set(const Key & ,const Value &) {}
    1.21  
    1.22        template<typename _ReadWriteMap>
    1.23        struct Constraints {