MSVC warning workaround for destroy

This commit is contained in:
Glen Fernandes
2021-10-31 20:50:34 -04:00
parent eae98e909e
commit 633a47f85b

View File

@@ -56,6 +56,7 @@ struct noinit_adaptor
template<class U> template<class U>
void destroy(U* p) { void destroy(U* p) {
p->~U(); p->~U();
(void)p;
} }
}; };