forked from boostorg/detail
Fixed macro usage
[SVN r16752]
This commit is contained in:
@@ -49,7 +49,10 @@ void allocator_construct(T* p, const T& t)
|
|||||||
|
|
||||||
template <class T>
|
template <class T>
|
||||||
void allocator_destroy(T* p)
|
void allocator_destroy(T* p)
|
||||||
{ p->~T(); }
|
{
|
||||||
|
(void)p; // warning suppression
|
||||||
|
p->~T();
|
||||||
|
}
|
||||||
|
|
||||||
} }
|
} }
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user