4 Jul
2002
4 Jul
'02
12:52 a.m.
On Thu, 4 Jul 2002, Jon Wang wrote:
Oh, yes, function0 is enough. Thanks very much, Doug. Well, could the copy constructing from a boost.bind result be avoided? How about the following solution? Thanks.
This solution won't work, because you are storing a reference to a temporary object, which will cease to exist after the constructor call. Then the destructor is accessing memory that has already been destructed and probably reused. Doug