COIN-OR::LEMON - Graph Library

Changeset 94:a4688e4138ec in lemon-1.2 for lemon


Ignore:
Timestamp:
03/18/08 13:57:15 (16 years ago)
Author:
Peter Kovacs <kpeter@…>
Branch:
default
Phase:
public
Message:

Fixes in the map concepts

  • Now Value type needn't be default constructible.
  • Extend the test file to check this.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/concepts/maps.h

    r79 r94  
    4848
    4949      /// Returns the value associated with the given key.
    50 
    51       /// Returns the value associated with the given key.
    52       /// \bug Value shouldn't need to be default constructible.
    53       Value operator[](const Key &) const { return Value(); }
     50      Value operator[](const Key &) const {
     51        return *static_cast<Value *>(0);
     52      }
    5453
    5554      template<typename _ReadMap>
     
    127126
    128127      /// Returns the value associated with the given key.
    129       Value operator[](const Key &) const { return Value(); }
     128      Value operator[](const Key &) const {
     129        return *static_cast<Value *>(0);
     130      }
    130131
    131132      /// Sets the value associated with the given key.
     
    161162      typedef CR ConstReference;
    162163
    163     protected:
    164       Value tmp;
    165164    public:
    166165
    167166      /// Returns a reference to the value associated with the given key.
    168       Reference operator[](const Key &) { return tmp; }
     167      Reference operator[](const Key &) {
     168        return *static_cast<Value *>(0);
     169      }
    169170
    170171      /// Returns a const reference to the value associated with the given key.
    171       ConstReference operator[](const Key &) const { return tmp; }
     172      ConstReference operator[](const Key &) const {
     173        return *static_cast<Value *>(0);
     174      }
    172175
    173176      /// Sets the value associated with the given key.
Note: See TracChangeset for help on using the changeset viewer.