- Fix deletion using an ad-hoc functor to avoid memory leaks, instead that ptr_fun(operator delete). Valgrind says we're doing well with History\!

git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@787 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
tchernobog 2006-07-20 21:50:28 +00:00
parent 69a7ee03eb
commit 19ee5c1884
8 changed files with 62 additions and 8 deletions

View file

@ -113,7 +113,7 @@ DynamicSubRequest::get_state() const
DynamicSubRequest::state
DynamicSubRequest::set_state(state new_state)
{
state temp;
state temp = _state;
_state = new_state;
return temp;
}