diff -r 3a48bc350e0f -r 74589d20dbc3 src/hugo/sym_map.h --- a/src/hugo/sym_map.h Mon Sep 20 17:53:33 2004 +0000 +++ b/src/hugo/sym_map.h Mon Sep 20 22:57:48 2004 +0000 @@ -103,11 +103,6 @@ SymMap(const SymMap& copy) : MapImpl(static_cast(copy)) {} - /** Constructor to copy a map of an other map type. - */ - template SymMap(const CMap& copy) - : MapImpl(copy) {} - /** Assign operator to copy a map of the same map type. */ SymMap& operator=(const SymMap& copy) { @@ -115,13 +110,6 @@ return *this; } - /** Assign operator to copy a map of an other map type. - */ - template SymMap& operator=(const CMap& copy) { - MapImpl::operator=(copy); - return *this; - } - /** Add a new key to the map. It called by the map registry. */ void add(const KeyType& key) {