lemon/bits/default_map.h
changeset 2333 8070a099ffb6
parent 2202 09cbc87cb4ab
child 2391 14a343be7a5a
equal deleted inserted replaced
21:cf2f6842d88e 22:fc197cc86ff7
    29 ///\brief Graph maps that construct and destruct their elements dynamically.
    29 ///\brief Graph maps that construct and destruct their elements dynamically.
    30 
    30 
    31 namespace lemon {
    31 namespace lemon {
    32   
    32   
    33   
    33   
    34 #ifndef _GLIBCXX_DEBUG
    34 #ifndef LEMON_USE_DEBUG_MAP
    35 
    35 
    36   template <typename _Graph, typename _Item, typename _Value>
    36   template <typename _Graph, typename _Item, typename _Value>
    37   struct DefaultMapSelector {
    37   struct DefaultMapSelector {
    38     typedef ArrayMap<_Graph, _Item, _Value> Map;
    38     typedef ArrayMap<_Graph, _Item, _Value> Map;
    39   };
    39   };