mirror of
https://github.com/boostorg/detail.git
synced 2025-08-01 05:14:28 +02:00
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