Search Results

0
votes

Cause of a memory leak in C++ when using the Boehm GC

The allocator is deleting your pairs. But deleting a pair doesn't delete members of the pair that happen to be pointers. …