[SVN r67083]
This commit is contained in:
Andreas Huber 2010-12-07 14:46:09 +00:00
parent 6593c42e2f
commit 64ef6e806b
2 changed files with 6 additions and 0 deletions

View File

@ -131,6 +131,8 @@
<ul>
<li>Fixed Bug #4817 (The order of deferred events is not preserved under
certain circumstances), reported by Igor R</li>
<li>Fixed Bug #4511 (MSVC10 warning due to lack of placement operator
delete), reported by Igor R</li>
</ul>
<p>1.43.0</p>

View File

@ -50,6 +50,10 @@ class event : public detail::rtti_policy::rtti_derived_type<
detail::deallocate< MostDerived, Allocator >( pEvent );
}
void operator delete( void * pEvent, void * p )
{
}
protected:
//////////////////////////////////////////////////////////////////////////
event() {}