Removed the -> methods from the arc class to prevent stupid warnings under

VisualStudio6.0.
This commit is contained in:
Robert Osfield
2003-01-15 15:44:49 +00:00
parent afb0ff775d
commit 7bf60026f7

View File

@@ -87,9 +87,7 @@ public:
node_iterator terminal() const { return m_Terminal; }
arctype & operator * () { return m_Elem; }
arctype * operator -> () { return &m_Elem; }
const arctype & operator * () const { return m_Elem; }
const arctype * operator -> () const { return &m_Elem; }
protected:
friend class graph_array<nodetype, arctype>;