$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: monade (monade_at_[hidden])
Date: 2006-01-04 03:10:58
Hi,
I'm using vc.net and when linking with mfc71d.lib memory leaks are
reported for this code:
void doNothing() {}
int main()
{
boost::thread* thrd = new boost::thread( &doNothing );
thrd->join();
delete thrd;
return 0;
}
Does it leak on other platforms too? When I build the thread on the
stack instead, everything works fine.
Thx for help,
Boris