Thanks for answering. Stefan Strasser wrote:
you're right, the BGL uses the default new operator to allocate memory which then isn't collected of course. so this makes it effectively impossible to use BGL with boehm GC. is there a boost guideline to allocate memory only through allocators which is violated here? (the "new" which is causing the leak(or one of your leaks?) in your code is at line 278 of graph/detail/adjacency_list.hpp in version 1.32)
As a matter of facts, by modifying the snippet code and commenting out
the add_edge() instruction, the binary no longer leaks, so the guilty
"new" is certainly the one you point (which allocate for an edge
property). I tried to replace it by "new (UseGC)" in order to check if
edge properties become collectable, but unfortunately this does not
work, binary still leaks...
Snippet code is again provided.
--
#include