src/hugo/map_defines.h
changeset 897 ef09eee53b09
parent 891 74589d20dbc3
child 901 69a8e672acb1
     1.1 --- a/src/hugo/map_defines.h	Wed Sep 22 07:32:57 2004 +0000
     1.2 +++ b/src/hugo/map_defines.h	Wed Sep 22 08:04:31 2004 +0000
     1.3 @@ -40,7 +40,6 @@
     1.4  class NodeMap : public DynMap<NodeMapRegistry, Value> { \
     1.5  public: \
     1.6  typedef DynMap<NodeMapRegistry, Value> Parent; \
     1.7 -NodeMap() {} \
     1.8  NodeMap(const typename Parent::Graph& g) \
     1.9    : Parent(g, g.node_maps) {} \
    1.10  NodeMap(const typename Parent::Graph& g, const Value& v) \
    1.11 @@ -72,7 +71,6 @@
    1.12  public: \
    1.13  typedef DynMap<EdgeMapRegistry, Value> Parent; \
    1.14  \
    1.15 -EdgeMap() {} \
    1.16  EdgeMap(const typename Parent::Graph& g) \
    1.17    : Parent(g, g.edge_maps) {} \
    1.18  EdgeMap(const typename Parent::Graph& g, const Value& v) \
    1.19 @@ -118,7 +116,6 @@
    1.20  public: \
    1.21  typedef SymMap<DynMap, SymEdgeMapRegistry, Value> Parent; \
    1.22  \
    1.23 -SymEdgeMap() {} \
    1.24  SymEdgeMap(const typename Parent::Graph& g) \
    1.25    : Parent(g, g.sym_edge_maps) {} \
    1.26  SymEdgeMap(const typename Parent::Graph& g, const Value& v) \
    1.27 @@ -148,7 +145,6 @@
    1.28  public: \
    1.29  typedef typename From::template NodeMap<Value> Parent; \
    1.30  \
    1.31 -NodeMap() : Parent() {} \
    1.32  NodeMap(const To& to) \
    1.33    : Parent(static_cast<const From&>(from)) { } \
    1.34  NodeMap(const To& to, const Value& value) \
    1.35 @@ -178,7 +174,6 @@
    1.36  public: \
    1.37  typedef typename From::template EdgeMap<Value> Parent; \
    1.38  \
    1.39 -EdgeMap() : Parent() {} \
    1.40  EdgeMap(const To& to) \
    1.41    : Parent(static_cast<const From&>(from)) { } \
    1.42  EdgeMap(const To& to, const Value& value) \