Jens Theisen wrote:
Paul Davis wrote:
Anyway, the weird part is that its only on my 64 bit machine.
This won't help you but we're using shared_ptr all over the place in a large application on AMD64, and haven't encountered any bugs in it. I'm confident that code is pretty well tested.
Do you use threads? Do you use shared objects opened at runtime with dlopen that share shared_ptrs?
Jens
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
This is occurring in a non-threaded program. I am using dlopened objects, but I'm not sharing shared_ptr's across them. I know this code wouldn't be in boost if it weren't well tested, I was just wondering if I had happened to come up on something weird that doesn't usually pop up. I've never had a problem before, and just though I'd ask to see if this was a definitely 'my fault' sort of situation. Paul