From: Doug Gregor (dgregor_at_[hidden])
Date: 2004-11-08 13:11:53


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