COIN-OR::LEMON - Graph Library

Changeset 531:66f1c466889f in lemon-0.x for src/include


Ignore:
Timestamp:
05/05/04 09:53:51 (20 years ago)
Author:
Alpar Juttner
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@697
Message:

Compiles with are icc, as well.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/include/smart_graph.h

    r503 r531  
    360360      const NodeMap<T>& operator=(const NodeMap<TT> &m)
    361361      {
    362         copy(m.container.begin(), m.container.end(), container.begin());
     362        std::copy(m.container.begin(), m.container.end(), container.begin());
    363363        return *this;
    364364      }
     
    449449      const EdgeMap<T>& operator=(const EdgeMap<TT> &m)
    450450      {
    451         copy(m.container.begin(), m.container.end(), container.begin());
     451        std::copy(m.container.begin(), m.container.end(), container.begin());
    452452        return *this;
    453453      }
     
    594594      const SymEdgeMap<T>& operator=(const SymEdgeMap<TT> &m)
    595595      {
    596         copy(m.container.begin(), m.container.end(), container.begin());
     596        std::copy(m.container.begin(), m.container.end(), container.begin());
    597597        return *this;
    598598      }
Note: See TracChangeset for help on using the changeset viewer.