Kaydet (Commit) 2c5cff69 authored tarafından Michael Stahl's avatar Michael Stahl

pq_allocator.hxx: work around spurious MSVC warning

Change-Id: I6c516e4bd125c4075c195980a2fcdb58382c38dd
üst ec41cced
......@@ -182,6 +182,9 @@ public:
void destroy (pointer p)
{
p->~T();
#ifdef _MSC_VER
(void) p; // spurious warning C4100: 'p': unreferenced formal parameter
#endif
}
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment