13 Nov
2003
13 Nov
'03
5:57 p.m.
On Nov 12, 2003, at 10:09 PM, Darryl Green wrote:
std::list< boost::shared_ptr<MyObject> > * objectList;
An uninitialized pointer to a list of shared pointers to MyObject is probably not what you wanted, but its what you defined.
The actual code looks like std::list< boost::shared_ptr<MyObject> > * objectList = GetObjectList();
I don't think you bug has anything to do with shared pointers...
Correct. I think display of the value in the debugger was causing it to die. -jim