
6 Aug
2011
6 Aug
'11
9:48 a.m.
Hi Eric, On Aug 6, 2011, at 3:14 AM, Eric Fowler <eric.fowler@gmail.com> wrote:
class DelaunayGraph: public DG { public: void foo() { Edge e = whatever(); remove_edge(e, *this); // <<<<----THIS BLOWS UP ..stuff... }
I think you're invoking a member function instead of the free function you intended. Try boost::remove_edge. HTH G