From James French, a tweak with fix a compile problem related to STLport.

This commit is contained in:
Robert Osfield
2005-04-08 14:44:44 +00:00
parent 2ae269c447
commit d52e02aaeb

View File

@@ -133,11 +133,11 @@ public:
nodetype & operator = (const nodetype & Elem) { return (m_Elem = Elem); }
node() : m_Marker(false) { }
protected:
friend class graph_array<nodetype, arctype>;
friend class std::vector<node>;
node() : m_Marker(false) { }
std::list<arc> m_OutArcs;
nodetype m_Elem;