File OpenSceneGraph-1.2-gcc15.patch of Package OpenSceneGraph1
Index: OpenSceneGraph-1.2/OpenSceneGraph/src/osgUtil/TriStrip_graph_array.h
===================================================================
--- OpenSceneGraph-1.2.orig/OpenSceneGraph/src/osgUtil/TriStrip_graph_array.h
+++ OpenSceneGraph-1.2/OpenSceneGraph/src/osgUtil/TriStrip_graph_array.h
@@ -371,7 +371,7 @@ inline void graph_array<nodetype, arctyp
template <class nodetype, class arctype>
inline void graph_array<nodetype, arctype>::erase_arcs() {
m_NbArcs = 0;
- for (nodeid i = 0; i < this->Size(); ++i)
+ for (nodeid i = 0; i < this->size(); ++i)
m_Nodes[i].m_OutArcs.clear();
}