From 7bf60026f71c99d10bfc1c08dbbbf7ce56edc7ec Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Wed, 15 Jan 2003 15:44:49 +0000 Subject: [PATCH] Removed the -> methods from the arc class to prevent stupid warnings under VisualStudio6.0. --- src/osgUtil/TriStrip_graph_array.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/osgUtil/TriStrip_graph_array.h b/src/osgUtil/TriStrip_graph_array.h index 452339b38..712f20947 100644 --- a/src/osgUtil/TriStrip_graph_array.h +++ b/src/osgUtil/TriStrip_graph_array.h @@ -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;