From ddbdfacae7d5f4fdfd177eb3a0cacbb292ccff5c Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Wed, 28 Aug 2019 13:41:51 +1000 Subject: [PATCH] array/darray: remove unnecessary explicit storage destructor --- array/darray.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/array/darray.hpp b/array/darray.hpp index 9a52ce68..930df393 100644 --- a/array/darray.hpp +++ b/array/darray.hpp @@ -148,7 +148,6 @@ namespace cruft { private: union alignas (ValueT) storage_t { storage_t () { }; - ~storage_t () { }; char store[sizeof (ValueT) * CapacityV]; ValueT objects[CapacityV];