Fixed macro usage

[SVN r16752]
This commit is contained in:
John Maddock
2003-01-05 12:12:39 +00:00
parent 48507564a9
commit 1f52127735

View File

@ -49,7 +49,10 @@ void allocator_construct(T* p, const T& t)
template <class T>
void allocator_destroy(T* p)
{ p->~T(); }
{
(void)p; // warning suppression
p->~T();
}
} }