Another baffling error message
Sorry to have to ask the list for help, but I am once again stumped. Perhaps
you will find this easy.
I have some classes defined:
using namespace std;
using namespace boost;
class POS{..stuff..}
class LEN{...stuff...}
typedef adjacency_list
Hi Eric,
On Aug 6, 2011, at 3:14 AM, Eric Fowler
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
participants (2)
-
Eric Fowler
-
Gordon Woodhull