
15 Jun
2008
15 Jun
'08
7:04 p.m.
When trying to determine where memory leaks are coming from, you could try something like this... #include <crtdbg.h> int main() // try replacing this line with BOOST_AUTO_TEST_CASE_TEMPLATE { // break on memory allocation number _crtBreakAlloc = 83; // or 84, 93,94 } Mike ----- Original Message ----- From: Greg Ravikovich To: boost-users@lists.boost.org Sent: Saturday, June 14, 2008 12:15 PM Subject: [Boost-users] [Boost.Test] Problem with vc9 runtime library Hello all. I have the following program: <cut> {83} normal block at 0x003429B0, 8 bytes long. Data: < )4 > E8 29 34 00 00 00 00 00 Object dump complete. What could cause this? Any suggestions? Greg