8 Nov
2004
8 Nov
'04
6:11 p.m.
On Nov 8, 2004, at 1:10 PM, Stephen torri wrote:
Its still balking at compile time. I have changed the Component_Writer but I get the following compile error. The file is attached.
You changed the "Vertex_Type v" to "Vertex_Type& v". You need to use either the former (copying vertex descriptors is cheap) or make that a reference to const Vertex_Type. Doug